RE: camel ftp producer autocreate 2.15

2016-05-27 Thread Mills, Gary (GE Digital)
Hello fellow Camel's - Thanks in advance !!! - I have a question. My problem is I need to take files from message queue transform them, rename them, and populate an ftp server with the directory structure and files, that will be transferred to another server file share mounted on a

camel ftp producer autocreate 2.15

2016-05-27 Thread Mills, Gary (GE Digital)
Hello fellow Camel's - Thanks in advance !!! - I have a question. My problem is I need to take files from message queue transform them, rename them, and populate an ftp server with the directory structure and files, that will be transferred to another server file share mounted on a

IBM MQ single thread to select for a given JMSXGroupID

2016-05-27 Thread sobha
Will the Camel MQ component be able to select based on JMSXGroupID in a single thread and use multiple threads across different JMSXGroupID. We are using IBM MQ and not active MQ. We want to maintain the order for a given JMSXGroupID. But since huge number of messages come in we want to use

Re: Removing routes programmatically

2016-05-27 Thread Manohar Shenoy
>From what we can make out, we are still seeing this issue in the latest version of Camel. One of the associates I work with has posted a related post http://camel.465427.n5.nabble.com/Cannot-stop-multiple-route-td5783094.html. Could someone kindly respond if this is still an issue? -- View

QuartzScheduler, reschedule running route

2016-05-27 Thread kalber
I start a route with scheduler=quartz2=0 03,11 * * * ? on an ftp component. Changing cron value on my config file an bringing up to context, how can i change schedule.cron on this running route ? Mybe context.getRouteDefinitions(), what must be replaced ? Or QuartzScheduler ? Thanks Karlheinz

Camel leaves threads in waiting state

2016-05-27 Thread Marcus Krantz
Hi, I have a couple of nested splitters that does parallel processing. The issue is that everything is working fine and the the route completes as expected. However, looking it appears that the threads created by the Splitter seems to be parked in a waiting state. So the threads in my

Re: Camel-mail leave message unseen while searching

2016-05-27 Thread metalalisa
I need another behavior. I need to leave the seen flag unchanged. Should I add another one property to the endpoint and make pull request? -- View this message in context: http://camel.465427.n5.nabble.com/Camel-mail-leave-message-unseen-while-searching-tp5783119p5783156.html Sent from the

Any examples of using camel-eclipse

2016-05-27 Thread Anton
Hello I am very interested in learning more about http://camel.apache.org/camel-eclipse.html. Does anyone have an examples of camel-eclipse in action? Thanks

Re: Camel Consumer not available within a Unit Test - ProducerTemplate

2016-05-27 Thread Charles Moulliard
Problem resolved using context.stopRoute("direct-idempotent"); context.startRoute("direct-idempotent"); I suspect that how the thread is paused/resume when using startCamel() & stopCamelContext() is different from using stop/start route On Fri, May 27, 2016 at 12:25 PM, Charles Moulliard

Re: Missing exchange details in logging

2016-05-27 Thread Minh Tran
Ok I can see it on the redeliveryPolicy tag. For anyone interested it’s conveniently named logExhaustedMessageBody. The only problem is I use the redeliveryPolicyProfile tags instead which allows me to just define the policy once and reuse it anywhere. Guess I’ll wait til 2.18 where we can

Camel Consumer not available within a Unit Test - ProducerTemplate

2016-05-27 Thread Charles Moulliard
Hi, I'm facing a strange issue that I don't understand. I can execute this unit test case when I start the Test within IntelliJ but it will fail with mvn clean test -Dtest= CamelIdempotentTest As you can see, I use the parent method stopCamelContext() and startCamelContext() to stop and start

Need inputs on Message Driven system with Camel-rx

2016-05-27 Thread arunkabraham
I am working on a message driven system using Camel, camel-rx and Websphere MQ. Whenever a request comes from user, a message is generated as an event and observe for the response event with correlationid using camel-rx. Another system will process the event and publish the completion event. Then

Re: Missing exchange details in logging

2016-05-27 Thread Claus Ibsen
And from Camel 2.18 onwards you can set it on the which makes it even easier But in 2.17.x you need to configure it on the On Fri, May 27, 2016 at 7:38 AM, Claus Ibsen wrote: > Just look in the XSD schema and you can find where it is. > > On Fri, May 27, 2016 at 7:29