I have a requirement to route exchanges sequentially to a POJO processors. I am trying something like the following:
.from("direct:start") .to("xslt:xslt/transform.xsl") .to("seda:In"); from("seda:In?concurrentConsumers=1").to("bean:rsProcessor"); The bean processor is sending the body payload to an external service using a socket, and it should wait to read a response before sending the new request. I thought I could ensure this operation with concurrentConsumers=1 in the seda component. Is this not the case? How can I achieve such an operation? Regards, Panos -- View this message in context: http://camel.465427.n5.nabble.com/seda-concurrent-consumers-tp5713463.html Sent from the Camel - Users mailing list archive at Nabble.com.