Re: setting JMS Priroity 9

2015-09-21 Thread cperi8
Hey Raul Thanks for the reply. I am using IBM MQ/Websphere Message Broker. Here is more detail . Do I need to configure from WMB broker side? In my RouteBuilder am doing this : exchange.getOut.setHeader("JMSPriority",9); exchange.getOut.setHeader("JMSMessageId", 1234); then in the endpoint - I

setting JMS Priroity 9

2015-09-20 Thread cperi8
I am setting the JMS Priority Header 9. But when the message goes out of queue it does not havethe priority 9 it is always showing 4. Here is the code snippet to outbound queue setHeader("JMSPriority", constant(9)) And also I to set preserveMessageQos=true on the jms endpoint. Still no good. W