Re: multicast and setting header

2012-05-30 Thread emeka_kanu
, Emeka Kanu -- View this message in context: http://camel.465427.n5.nabble.com/multicast-and-setting-header-tp5691098p5713723.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: multicast and setting header

2012-05-29 Thread Henryk Konsek
> I'm having an issue as well, for which I have implemented the > AggregationStrategy but am still facing issues. This is how you can collect exchanges multicasted to the several endpoints. from("direct:multicastMe") .multicast(new GroupedExchangeAggregationStrategy()).parallelProcessing()

Re: multicast and setting header

2012-05-28 Thread emeka_kanu
p you can provide. Kind Regards Emeka Kanu -- View this message in context: http://camel.465427.n5.nabble.com/multicast-and-setting-header-tp5691098p5713643.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: multicast and setting header

2012-05-08 Thread Claus Ibsen
> > http://camel.apache.org/multicast.html > > Thanks, > Yogesh > > > -- > View this message in context: > http://camel.465427.n5.nabble.com/multicast-and-setting-header-tp5691098p5692642.html > Sent from the Camel - Users mailing list archive at Nabble.com. -- Claus Ibsen

Re: multicast and setting header

2012-05-07 Thread ychawla
can process each exchange in the multicast, grab your headers, and see them on the new exchange. See the multicast page for more details on a custom aggregator: http://camel.apache.org/multicast.html Thanks, Yogesh -- View this message in context: http://camel.465427.n5.nabble.com/multicast-and

multicast and setting header

2012-05-07 Thread Tyler Durvik
I have a group of processors that I am sending messages to via multicast. Each processor will add a header to the message based on the what the processor needs to do. The problem is that not all headers are in the message after the multicast has completed. I have the multicast set to parallelpr