I am working in a project where a request(ISO 8583) need to be send via JPOS server to the backed (Remote Host as per official doc) via SOAP api.
We have implemented our system as follows:
We implemented a ISOListner in a middle ware(spring boot project) where it converts the incoming ISO message to SOAP request.
Is it possible to embed the Middle ware code to JPOS server itself and omit the mw?
If possible , what is the right place to put our conversion logic ? Is it the ChannelAdaptor or TransactionManager ?
Few blogs suggest that we can put all logic to TransactionManager or ChannelAdaptor. If it is true then why we need mux and channel at all? Or our architecture is ok to proceed further ?