Wso2 调用中介在jms代理中的使用响应如何?

Wso2 调用中介在jms代理中的使用响应如何?,wso2,jms,wso2esb,Wso2,Jms,Wso2esb,我有一个Jms代理,我在其中使用callout中介。调出调解人如何获得响应 <?xml version="1.0" encoding="UTF-8"?> <proxy name="JmsQueue" startOnLoad="true" trace="disable" transports="jms" xmlns="http://ws.apache.org/ns/synapse"> <target> <inSequence>

我有一个Jms代理,我在其中使用callout中介。调出调解人如何获得响应

<?xml version="1.0" encoding="UTF-8"?>
<proxy name="JmsQueue" startOnLoad="true" trace="disable"
  transports="jms" xmlns="http://ws.apache.org/ns/synapse">
  <target>
    <inSequence>
      <property name="OUT_ONLY" scope="default" type="STRING" value="true"/>
      <callout action="http://LoadTestSrv/IService1/ConfirmPayment" endpointKey="LoadTestSrvEp">
        <source type="envelope"/>
        <target key="response"/>
      </callout>
      <log level="full">
        <property expression="get-property('response')" name="Response"/>
      </log>      
    </inSequence>
    <outSequence />
    <faultSequence>
      <log category="ERROR" level="custom">
        <property name="Proxy 'JmsQueue'" value="********* FAULT *********"/>
      </log>
      <property name="SET_ROLLBACK_ONLY" scope="axis2" type="STRING" value="true"/>
      <log level="custom">
        <property name="Transaction Action" value="Rollbacked"/>
      </log>
    </faultSequence>
  </target>
</proxy>


您的代理似乎是对的,您的问题是什么?我在日志中没有看到响应(response=null)。问题决定在