RE: How to add camel-bindy to osgi project - very urgent help required

2018-05-13 Thread Joerg Jansen
Hi, I think the problem is an invalid instruction within you Import-package of the your Felix-plugin. ... org.apache.camel.camel-bindy, ... As far as I know now special import instruction is needed (please correct me if I'm wrong ;) ). In our experience with using camel-bindy, it is su

camel-wmq: multiple queues in ont context

2018-06-26 Thread Joerg Jansen
Hi everybody, I'm facing some strange behavior when connecting to multiple queues in one camel context. The routes are looking as followed (included in one RouteBuilder): from(wmq:queue:queue1) .id("mq-out").routeId("mq-out") .convertBodyTo(String.class) .log("Received msg fro

RE: Rest DSL XML Binding SAX Parse Exception

2018-08-30 Thread Joerg Jansen
Does your generated jaxb class contains a XmlRootElement annotation? I think that we had to include is via xml binding to the generated classes to get it work. Rgds, Jörg -Original Message- From: Alex Soto Sent: Dienstag, 28. August 2018 17:20 To: users@came

publish/subscribe with camel-netty4

2017-05-31 Thread Joerg Jansen
Hi everybody, I have to create an interface which should communicate to a server over tcp/ip. After an initial registration request, the server will publish all upcoming events on the same socket (and channel). My first idea was to create two routes, one for the request the other one acting as

publish/subscribe with camel-netty4

2017-06-09 Thread Joerg Jansen
I found a way, which seems to work for me. The solution was to create a custom component which extends the NettyComponent. The corresponing endpoint will have an reference to the used listener channel (Consumer). @Override protected void doStart() throws Exception { super.doStart(); Field n