I'm new to Camel so please forgive me if this is a naive question, but it
looks to me like my jms message headers are not being maintained when the
message is forwarded from one queue to another.
In particular, I'm trying to use the JSMReplyTo mechanism (with a temporary
queue) but the header vanishes as the message passes through Camel.
I've got Camel running inside ActiveMQ 4.1.1 with some hard coded
destinations:
<destinations>
<queue physicalName="RegQueue" />
<queue physicalName="Out1Queue" />
</destinations>
and a simple routing rule:
<camelContext id="camel"
xmlns="http://activemq.apache.org/camel/schema/spring"
packages="org.foo.bar">
<route>
<from uri="activemq:RegQueue"/>
<to uri="activemq:Out1Queue"/>
</route>
</camelContext>
Any help would be appreciated.
Thanks,
-Dominic
--
View this message in context:
http://www.nabble.com/Naive-Question-%28-%29-Why-are-headers-not-maintained-when-message-is-forwarded--tf4247991s22882.html#a12089220
Sent from the Camel - Users mailing list archive at Nabble.com.