wso2esb - WSO2 ESB 4.8.1 Custom Proxy Fail and 4.7.1 works -


i have custom proxy in wso2 esb 4.7 works correct. but, when copy esb 4.8.1 it's fail.

this te code.

<?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> 

any idea?? thanks

in http endpoint, properties names must start "uri.var" : uri.var.pempresa , value must set

see https://docs.wso2.org/display/esb481/http+endpoint


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -