I have a problem creating/modeling integration flow for the next global use case:
- Input to the system is some kind of Message. That message goes through Splitter and Transformer Endpoint and after that on ServiceActivator where that transformed message is processed. This use case is clear for me.
- Confusion occurs because of the next part. After the ServiceActivator finishes processing I need to took the base Message (message from the beginning of first part) again and put it in other processing, for example again through Splitter and Transformer. How can I model that use case? Can I return the message payload to that base value? Is there some component that could help me?
Hope I describe it well.