Last active
December 19, 2015 04:09
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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