WSO2 ESB 4.8.1自定义代理失败和4.7.1工作

时间:2014-04-14 10:10:17

标签: wso2esb

我在WSO2中有自定义代理ESB 4.7工作正常。 但是,当我复制到ESB 4.8.1时,它失败了。

这是代码。

<?xml version="1.0" encoding="UTF-8"?> <proxy xmlns="http://ws.apache.org/ns/synapse"
       name="ExpertWS"
       transports="http"
       statistics="disable"
       trace="enable"
       startOnLoad="true">    <target>
      <inSequence>
         <log level="full"/>
         <send>
            <endpoint>
               <http uri-template="http://1.33.33.103:8080/erpws/logistica/master/ume/{pEmpresa}"/>
            </endpoint>
         </send>
      </inSequence>
      <outSequence>
         <send/>
      </outSequence>    </target>    <description/> </proxy>

任何想法? 感谢

1 个答案:

答案 0 :(得分:0)

在http端点中,属性名称必须以&#34; uri.var&#34;开头。 :uri.var.pEmpresa和值必须设置

请参阅https://docs.wso2.org/display/ESB481/HTTP+Endpoint