On Mon, Jan 11, 2010 at 10:31 AM, yaog <[email protected]> wrote: > > InOnly indeed solved my problem, however why doesn't InOut work if my beans > return an Objet and Camel creates a temp replyTo queue? > --
request/reply over JMS requires 2 queues: 1 for request, 1 for reply. And it also require a consumer on the "other" side to listen to the request queue and send the reply back on the reply queue. And this is what you lack, and hence why you get a timeout. So if you add a route that consumes from that queue and maybe does something to the message so you can see its changed when it comes back. Then that should work with InOut. > View this message in context: > http://old.nabble.com/route-debugging-tp27107483p27107783.html > Sent from the Camel - Users mailing list archive at Nabble.com. > > -- Claus Ibsen Apache Camel Committer Author of Camel in Action: http://www.manning.com/ibsen/ Open Source Integration: http://fusesource.com Blog: http://davsclaus.blogspot.com/ Twitter: http://twitter.com/davsclaus
