Skip to content

Instantly share code, notes, and snippets.

@hasithaa
Last active December 19, 2015 04:09
Show Gist options
  • Select an option

  • Save hasithaa/5895412 to your computer and use it in GitHub Desktop.

Select an option

Save hasithaa/5895412 to your computer and use it in GitHub Desktop.
WSO2 ESB Echo Proxy: This is a sample proxy service that invokes WSO2 ESB echo service.
<proxy xmlns="http://ws.apache.org/ns/synapse" name="EchoProxy" transports="https,http" statistics="disable"
trace="disable" startOnLoad="true">
<target>
<inSequence>
<!--logging incoming message -->
<log level="custom">
<property name="ProxyInvoked" value=" -------yes-----"/>
</log>
<log level="full"/>
<!-- invoking echo service -->
<send>
<endpoint>
<address uri="http://localhost:8280/services/echo"/>
</endpoint>
</send>
</inSequence>
<outSequence>
<send/>
</outSequence>
</target>
<description>This is a sample proxy service that invokes WSO2 ESB echo service.</description>
</proxy>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment