Reading the payload data inside out sequence for binary relay in wso2esb 4.0.3

StackOverflow https://stackoverflow.com/questions/17876845

  •  04-06-2022
  •  | 
  •  

문제

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?

올바른 솔루션이 없습니다

다른 팁

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top