Hi
See the JMS page about JMS spec. implications for sending headers
http://camel.apache.org/jms
But generally headers is preserved.
On Sat, Oct 1, 2011 at 6:39 AM, Muhammad Ichsan wrote:
> I want to preserve headers of Exchange when sending to other queue. Is
> it possible?
>
>
> public void
I want to preserve headers of Exchange when sending to other queue. Is
it possible?
public void receiveAndForward(Exchange x) {
timer.schedule(new TimerTask() { sendTo(x, "otherQ"); }, 3000);
}
So that I can read headers of x in the following route
< read x header />
--
~The