Find the sample proxy service as below:
<?xml version="1.0" encoding="UTF-8"?> <proxy xmlns="http://ws.apache.org/ns/synapse" name="PassThrougghProxy" transports="https,http" statistics="disable" trace="disable" startOnLoad="true"> <target> <inSequence> <script language="js">java.lang.Thread.sleep(1000);</script> </inSequence> <outSequence> <send/> </outSequence> <endpoint> <address uri="http://www.webservicex.com/globalweather.asmx?wsdl"/> </endpoint> </target> <description/> </proxy>
No comments:
Post a Comment