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
Comments
Post a Comment