ActiveMQ 5.5.1
<c:route>
<c:from uri="jetty:http://0.0.0.0:8055/ws/despacho" />
<c:to uri="bean:despachoHandler" />
<c:to uri="activemq:queue:copom.out.test" pattern="InOut" />
</c:route>
The message appears queued, but I can't consume it. After some time I get the timeout and the message goes to ActiveMQ.DLQ.
org.apache.camel.ExchangeTimedOutException: The OUT message was not received within: 20000 millis due reply message with correlationID: Camel-ID-SSP-SGPF-GITSAD-58215-1359134232568-0-3 not received.
If I change it to pattern="InOnly" I'm able to consume the message normally.
What's going on?