Skip to content

Instantly share code, notes, and snippets.

@GDLMadushanka
Created September 29, 2019 07:18
Show Gist options
  • Save GDLMadushanka/ca2af4b041338f7c427f0a99073f996c to your computer and use it in GitHub Desktop.
Save GDLMadushanka/ca2af4b041338f7c427f0a99073f996c to your computer and use it in GitHub Desktop.
IBM WAS JMS Listener proxy
<?xml version="1.0" encoding="UTF-8"?>
<proxy xmlns="http://ws.apache.org/ns/synapse" name="WAS_JMS_Receiver" startOnLoad="true" statistics="disable" trace="disable" transports="jms">
<target>
<inSequence>
<log level="full">
<property name="test" value="receiving message ..." />
</log>
<drop />
</inSequence>
</target>
<description />
</proxy>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment