Re: splitter without aggregator?

2012-05-29 Thread Tyler Durvik
So I am receiving data (A) via JMS that I break down into separate messages (A1, A2, A3) using a splitter. I want to send each message (A1, A2, A3) back to the client with data analysis results. My test client always gets back the original data message (A). I have a temp queue on the client

splitter without aggregator?

2012-05-25 Thread Tyler Durvik
I would like split a message and have the message flow through my routes. At the end of my route processing I want the split messages to go back via JMS queue. I can split message, but appears that Camel is aggregating the messages back together. Is there a method to prevent split messages from

Re: splitter without aggregator?

2012-05-25 Thread Hadrian Zbarcea
Hi Tyler, Yes, you can use the splitter without an aggregator. I would venture to say that this is actually the default case. An aggregation strategy with the splitter will generate one exchange in the end (and yes, there is a default strategy and also there is no way around it). However if