Re: Messages seem to contain more than I expected...

2013-08-31 Thread apara
To close out this thread, here is the solution. Because Camel does not know that the consumer on the other end is NOT Camel, it wraps the @Produce into a BeanInvocation object. Using the convertBodyTo, I am able to tell Camel to convert from BeanInvocation to the value of the first parameter. Th

Re: Camel 2.11.1 - SedaComponent issues with Queue size

2013-08-31 Thread Claus Ibsen
Hi I logged a ticket https://issues.apache.org/jira/browse/CAMEL-6691 On Fri, Aug 30, 2013 at 9:46 AM, vcheruvu wrote: > Doh! It is an Integer object !! .. Allright, I will check out the source > using Git and apply patch. > > > > -- > View this message in context: > http://camel.465427.n5.nab

Re: Waiting for Namespace Handlers, even though they're available.

2013-08-31 Thread Claus Ibsen
Hi It depends what your bundle do. So if its in grace period it could be bacause your bundle uses an osgi service which is not yet available. Or you use a camel component which has not been installed yet. Are you sure you have installed all the needed Camel components first? eg you can install th

Re: Waiting for Namespace Handlers, even though they're available.

2013-08-31 Thread Claus Ibsen
Hi Okay found the thread on jboss forum where this was posted first https://community.jboss.org/thread/232058 And Tom posted a solution on this forum. On Fri, Aug 30, 2013 at 8:32 PM, Tom Ellis wrote: > I asked this on the JBoss Fuse forums, but I hope that maybe one of > you have come against

Can I use from ="direct:abc*" for wildcard routing...

2013-08-31 Thread apara
I am building a routing to URI based on the name of class's package: direct://start/event/${in.body.class.package.name} Later, I want to create a wildcard route that looks something lik

camel akka use cases

2013-08-31 Thread kiranreddykasa
Hi Has anyone used camel-akka component ? For what type of use cases it will be helpful? And how is it different from camel/processor to camel/actor model? - Regards kiran Reddy -- View this message in context: http://camel.465427.n5.nabble.com/camel-akka-use-cases-tp5738388.html Sent

Re: Can I use from ="direct:abc*" for wildcard routing...

2013-08-31 Thread Raul Kripalani
The best option is to use JMS Publish / Subscribe, with the camel-jms or activemq-camel components. This way you get the full QoS guarantees that a messaging broker is able to provide. If you use Apache ServiceMix, the ActiveMQ broker is already embedded so you can enjoy an out-of-the-box experienc

Re: Can I use from ="direct:abc*" for wildcard routing...

2013-08-31 Thread James Carman
Why not just route it to direct://start/event and then the receiving route can figure out what to do with it? You're not doing any conditional routing here anyway.

Re: Waiting for Namespace Handlers, even though they're available.

2013-08-31 Thread Tom Ellis
Hi yeah, Was about to update the solution here too, thanks Claus. On 31 August 2013 10:54, Claus Ibsen wrote: > Hi > > Okay found the thread on jboss forum where this was posted first > https://community.jboss.org/thread/232058 > > And Tom posted a solution on this forum. > > On Fri, Aug 30, 201

Missing datasource exception while referring to OSGI datasource for clustering quartz with camel-quartz

2013-08-31 Thread lakshmi.prashant
Hi, I am trying to set up quartz in clustered mode to work with camel quartz in my camel route. (i.e) we have deployed the bundle with the camel route having camel quartz endpoint, in all the cluster nodes. But I would like to have my camel route triggered only in one of the nodes in the cluster