Re: camel:context-inflight returns 'Object name cannot be null'

2015-06-05 Thread Claus Ibsen
You can do a log:display-exception to get more details. Also what version of Camel, Karaf are you using. And does some of the other karaf camel commands works? On Thu, Jun 4, 2015 at 2:03 PM, Martin Lichtin lich...@yahoo.com.invalid wrote: Trying a new command. karaf camel:context-inflight

Re: Using loop EIP to solve a Usecase

2015-06-05 Thread gargankur007
Can I stop the loop in between based on some condition? So I fix the number of iterations to high number and then based on some condition terminate the loop early. -- View this message in context: http://camel.465427.n5.nabble.com/Using-loop-EIP-to-solve-a-Usecase-tp5767874p5767894.html Sent

AW: Using loop EIP to solve a Usecase

2015-06-05 Thread jhm
Just a thought ... from(direct:loop) .process( // set special header if loop should continue ); .switch() .when( specialHeaderIsSet ).to(direct:loop) .otherwise(direct:nextStep) ; Jan -Ursprüngliche Nachricht- Von: gargankur007

Re: Using loop EIP to solve a Usecase

2015-06-05 Thread gargankur007
HI Claus I have used dynamic router now. It helped a lot.. Please help me solve http://camel.465427.n5.nabble.com/Document-Style-bare-WSDL-not-working-in-camel-cxf-td5767867.html; as well -- View this message in context:

Re: Tip: speed up camel-ftp download/upload by setting bufferSize on the FTPClient

2015-06-05 Thread rwijngaa
Hi, I'm using camel 2.12.x Regards Rino -- View this message in context: http://camel.465427.n5.nabble.com/Tip-speed-up-camel-ftp-download-upload-by-setting-bufferSize-on-the-FTPClient-tp5767800p5767903.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel Graceful Shutdown Issue for JMS endpoints

2015-06-05 Thread yogu13
Anyone ? Regards, -Yogesh -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Graceful-Shutdown-Issue-for-JMS-endpoints-tp5767883p5767909.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: When I use Xquery in Camel Route getting No script engine could be created for: xquery

2015-06-05 Thread Claus Ibsen
Hi As it seems you are using JBoss Fuse product / JBoss Fuse SW product you should ask for help at that vendor support site. On Fri, Jun 5, 2015 at 1:43 PM, MadhuB bandidr...@gmail.com wrote: please let me know anyone got above error either let me know the solution for this. please give

Re: Is there any way to unschedule the Camel quartz job

2015-06-05 Thread Andrew Block
Take a look at the Control Bus [1] which provides the functionality to start/stop routes from another route. - Andy [1] - http://camel.apache.org/controlbus.html --  Andrew Block On June 5, 2015 at 11:41:24 AM, Akram (akram.s...@gmail.com) wrote: I am triggering the quartz cron scheduler in

monitoring JMS

2015-06-05 Thread Tim Dudgeon
Camel provides a nice way to submit and consume from JMS queues. I also need to be able to monitor those queues. Does The JMS Component provide and nice hooks for inspecting those queues, or do I need to fall back to raw JMS or JMX? Example: I have a service that uses a Camel route to submit

Is there any way to unschedule the Camel quartz job

2015-06-05 Thread Akram
I am triggering the quartz cron scheduler in one route. The requirement is to stop/remove the scheduled quartz job from another route. I have tried the below code but in vain. //Quartz route /from(quartz://myGroup/everyMinute?cron=0+0/1+*+*+*+?stateful=true) .to(stream:out)/ //Another route to

Re: When I use Xquery in Camel Route getting No script engine could be created for: xquery

2015-06-05 Thread MadhuB
please let me know anyone got above error either let me know the solution for this. please give responseI spend more time on this issue. -- View this message in context:

https4 2.15.2 not recognizing my httpClientConfigurer endpoint option

2015-06-05 Thread jspyeatt
Like several similar posts I've seen I need to allow self-signed certs for https4 (2.15.2). Mine isn't working. I've created an implementation of HttpClientConfigurer that allows any host/cert. Below is the implementation of configureHttpClient(). @Override public void

Re: Jackson JSON Dataformat can not unmarshal what it has marshaled

2015-06-05 Thread Pontus Ullgren
Hello again, Tried adding FAIL_ON_UNKNOWN_PROPERTIES to the object mapper but it did not help. I also tried with the gson datamapper with the same result. What I find strange is that the datamappers can not unmarshal the json they have them self created. :-/ Apart from that the fact that

Re: Jackson JSON Dataformat can not unmarshal what it has marshaled

2015-06-05 Thread Pontus Ullgren
A small update. When using the xstream library it successfully unmarshal the json. However the resulting List is a List of Map, each containing one element with the class name as key, and not a List or POJOs as one might expect. On Fri, 5 Jun 2015 at 21:26 Pontus Ullgren ullg...@gmail.com wrote:

Re: Is there any way to unschedule the Camel quartz job

2015-06-05 Thread Ravindra Godbole
To use controlbus you need to identify/name your route. Your from definition will look like this from(quartz://myGroup/everyMinute?cron=0+0/1+*+*+*+? stateful=true).routeId(stopThisRoute). .to(stream:out)/ If you dont plan to use the controlbus, then in the current stopRoute method you can stop

Re: monitoring JMS

2015-06-05 Thread Carsten Ringe
Hi Tim, sounds like the setup that we are doing as well. I am not aware of any feature in the JMS component of Camel and we're using the JMX features of our message broker to get the information. We also deployed Jolokia to all our servers so getting JMX information can be done via HTTP

Netty component and acknowledgement message

2015-06-05 Thread s.marjanovic
Hello, First time working with netty component and I run into issues while trying to implement a chain of routes from a remote netty endpoint to ActiveMq endpoint. I have a requirement that states a custom acknowledgement message should be sent back to the remote netty endpoint. Different