Hi, you can use Camel to use aggregator target.
You can try something like:
from("jbi:jms1").aggregate(header("foobar")).to("jbi:jms2");
Take a look on this:
http://camel.apache.org/aggregator.html
Regards
JB
Raidwan wrote:
Hi all, I have a jms Topic provider and 2 consumers. The 2 consumers return a result, so i am looking for a solution to aggregate these responses... Is there any way to do that without doing a marshaler ? Thanks
