Hi, I have a route like this:
<camelContext id="camel" trace="true" xmlns="http://camel.apache.org/schema/spring"> <camel:template id="camelTemplate" /> <route> <from uri="direct:start" /> <to uri="bean:compA?method=start1" /> <to uri="bean:compB" /> <to uri="bean:myRMIClient1"/> <to uri="jms:infratest"/> <to uri="bean:myListener" /> </route> </camelContext> On the one hand in the end I send a jms message. On the other hand I want an InOut pattern so my main will get back the result from "bean:myRMIClient1". Can anyone advise how can this be achieved? -- View this message in context: http://old.nabble.com/How-to-InOut-with-JMs-tp26965017p26965017.html Sent from the Camel - Users mailing list archive at Nabble.com.
