Question

We have a proxy service(ESB 4.0.3) that reads from JMS queue (JMS 1.0) and calls a rest service .We are using binary relay for application/json using binary builder and formatter in axis2.xml

    <messageBuilder contentType="application/json"
                    class="org.wso2.carbon.relay.BinaryRelayBuilder"/>
    <messageFormatter contentType="application/json"
                      class="org.wso2.carbon.relay.ExpandingMessageFormatter"/>

This backend rest service returns an identifier and this has to be processed in the out sequence of the proxy service.Now the challenge here is to read the response which is a binary payload in the ESB sequence and capture that response identifier.

How to read the binary data in the out sequence of WSO2 ESB 4.0.3?

No correct solution

OTHER TIPS

You can use builder mediator, which is used to build the message

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top