Possible to identify previous step & configuration?

2016-10-12 Thread Goyal, Arpit
Hi Colleagues, We have the following route. Is it possible in 'MyPostProcessor' to get the information of the previous step - toD in this case, but it could be different in different case. from("direct:begin") .process(new MyInboundProcessor()) .process(new MyTransformer()) .toD("") .proces

Re: Possible to identify previous step & configuration?

2016-10-12 Thread fabryprog
Yes, it is possible but into your steps you must use exchange properties. Input Message and Output Message are designed to change values into every step / processor. -- View this message in context: http://camel.465427.n5.nabble.com/Possible-to-identify-previous-step-configuration

Re: Possible to identify previous step & configuration?

2016-10-12 Thread Claus Ibsen
Yes see the message history EIP http://camel.apache.org/eip On Wed, Oct 12, 2016 at 7:02 PM, Goyal, Arpit wrote: > Hi Colleagues, > > We have the following route. Is it possible in 'MyPostProcessor' to get the > information of the previous step - toD in this case, but it could be > different in