WSO2 ESB Tracking Request-Response

前端 未结 1 1456
臣服心动
臣服心动 2020-12-18 10:37

I\'m working on WSO2 ESB 4.8.1 By observing

ESB HOME/repository/logs/wso2carbon.log

i need to know the connection between one request and

相关标签:
1条回答
  • 2020-12-18 11:05

    1) In the request sequence you can get message id as

    <property name="msgID" expression="get-property('MessageID')"/>
    

    2) In the response sequence we set the correlation id using:

    <property name="CORRELATION_ID" expression="get-property('msgID')" scope="axis2" />
    

    Refer : https://docs.wso2.com/display/IntegrationPatterns/Correlation+Identifier

    0 讨论(0)
提交回复
热议问题