You have to send the message to the JMS as InOnly to avoid using
request/reply over that JMS queue.
For example you can wireTap to the JMS queue, which should tap the
message as InOnly
from("demomllp").wireTap("queuea").beanRef("myBean","myMethod");
You can also change the MEP in the Camel route
Here is what I am trying to do:
--> MINA (mina:tcp://localhost:42000?sync=true&codec=#hl7codec) -->
ActiveMQ:A (INBOUND) --> Some Magic Happens in RAILS_APP --> ActiveMQ:B
(OUTBOUND) --> MINA
Here is what I was hoping would happen:
from("demomllp").to("queuea").beanRef("myBean","myMethod");
my