Hi oleg,
My problem here is little bit complicated
I have an input file to input channel(input) and there is field in the i/p file say country name,but we cannot have it transformed in the transformation but we need that data for the thirdTransformation. is there any way we can store that data in header and retrive it later and add it in xml
My transformation logic:
Code:
<int:transformer id="firstTransformation" input-channel="input" output-channel="output">
<!-- some transformation -->
</int:transformer>
<int:transformer id="secondTransformation" input-channel="output" output-channel="output1">
<!-- some transformation -->
</int:transformer>
<int:transformer id="thirdTransformation" input-channel="output1" output-channel="output2">
<!-- some transformation -->
</int:transformer>
vishal