Re: Preserving Exchange Header

2011-10-01 Thread Claus Ibsen
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

Preserving Exchange Header

2011-09-30 Thread Muhammad Ichsan
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