Hi,

I have the following routing defined 

*       <camelContext xmlns="http://camel.apache.org/schema/spring";>
                <route>
                        <from
uri="rabbitmq://localhost/apm.general.topic?queue=apm.general.queue&amp;routingKey=apm.general.queue&amp;exchangeType=topic&amp;username=guest&amp;password=guest&amp;autoDelete=false&amp;durable=true"
/>
                        <removeHeaders pattern="rabbitmq.*"/>
                        <to uri="log:com.mycompany.order?level=DEBUG"/>
                        <choice>
                                <when>
                                        <simple>${headers.apmtype} == 
'scheduler-rest'</simple>
                                        <to
uri="rabbitmq://localhost/apm.rest.topic?queue=apm.rest.queue&amp;routingKey=apm.rest.queue&amp;exchangeType=topic&amp;username=guest&amp;password=guest&amp;autoDelete=false&amp;durable=true"
/>
                                </when>                 
                        </choice>                        
                </route>
        </camelContext>
*

The is the message I send to the apm.general.queue

<http://camel.465427.n5.nabble.com/file/n5745254/input.png> 

Once the Camel routes the message to apm.rest.queue as you can see message
properties like "reply_to", "correlation_id" are missing.

<http://camel.465427.n5.nabble.com/file/n5745254/out.png> 
Can someone help me with this.

Thanks,
Muthu





--
View this message in context: 
http://camel.465427.n5.nabble.com/Message-properties-missing-after-Camel-rabbitmq-routing-tp5745254.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to