,
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.
> 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()
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.
>
> 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
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
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