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
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
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
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
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