Hello,
I have my Queues configured as follows:
<camelContext id="cnBDCamelContext"
xmlns="http://camel.apache.org/schema/blueprint">
<route id="in-bound" autoStartup="true">
<description>Camel In-Bound Route</description>
<from uri="activemq:TestHarness.A"/>
<to uri="bean:processMsgService?method=processmsg"/>
</route>
</camelContext>
I'm sending an object msg as follows:
ProducerTemplate template =
camelContext.createProducerTemplate();
Transfer reply = (Transfer)
template.requestBody("activemq:TestHarness.A", transfer);
The message reaches the bean. The bean just returns the object (transfer).
But I'm not receiving any thing back (reply!). It times out!
What am I doing wrong?
Thanks in advance!
Matt
--
View this message in context:
http://karaf.922171.n3.nabble.com/Camel-ActiveMQ-Not-getting-teply-back-Missing-configuration-tp3420369p3420369.html
Sent from the Karaf - User mailing list archive at Nabble.com.