Re: Camel Multicast behaving strangely - please help

2016-12-12 Thread Nikhil Vibhav
Hey Nishat, I see that you've added the 'new DeepCloneRequest()' in a process() statement rather than a 'onPrepare()'. Can you check the onPrepare section (the last section) for the Camel multicast documentation - http://camel.apache.org/multicast.html Thanks, Nikhil. On Tue, 13 Dec 2016 at

Re: Camel Multicast behaving strangely - please help

2016-12-12 Thread nishat
Hello Nikhil, just to clarify the request is a pojo. and i want to send the exact copy of request to the multicasted endpoints. The problem is after first route in multicast, the second route dont get the exact copy of the initial route but a processed copy of first route. hoping to receive some

Re: Camel Multicast behaving strangely - please help

2016-12-12 Thread Nikhil Vibhav
Hi Nishat, If the request at the endpoint is an ArrayList and you need to send individual elements of that list to different routes, you can also use a splitter to split the body and then parallel process and send it to different routes (instead of multicast). Thanks, Nikhil On Mon, 12 Dec 2016

RE: Camel Multicast behaving strangely - please help

2016-12-12 Thread nishat
Thanks for the response. but the problem is that my endpoint are coming from a ArraylistList for multicast. But i will try you suggestion by hard coding it. will let you know in a while. -- View this message in context:

RE: Camel Multicast behaving strangely - please help

2016-12-12 Thread nishat
Hello Hans, I tried your suggestion but got the same issue. any other idea? -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Multicast-behaving-strangely-please-help-tp5791319p5791327.html Sent from the Camel - Users mailing list archive at Nabble.com.

RE: Camel Multicast behaving strangely - please help

2016-12-09 Thread Hans Orbaan
Can you try: multicast(.) .to("direct://route1") .to("direct://route2") -Oorspronkelijk bericht- Van: nishat [mailto:nishat.dhil...@gmail.com] Verzonden: Friday 9 December 2016 15:36 Aan: users@camel.apache.org Onderwerp: Camel Multicast behaving strangely - please help Hello All

Re: Camel Multicast behaving strangely - please help

2016-12-09 Thread nishat
the camel version i am using is 2.17.3 -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Multicast-behaving-strangely-please-help-tp5791319p5791320.html Sent from the Camel - Users mailing list archive at Nabble.com.