Skip to content

Instantly share code, notes, and snippets.

@rossmason
Created April 14, 2011 05:28
Show Gist options
  • Save rossmason/918938 to your computer and use it in GitHub Desktop.
Save rossmason/918938 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesource.org/schema/mule/core/2.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:file="http://www.mulesource.org/schema/mule/file/2.2"
xmlns:jms="http://www.mulesource.org/schema/mule/jms/2.2"
xsi:schemaLocation="
http://www.mulesource.org/schema/mule/core/2.2 http://www.mulesource.org/schema/mule/core/2.2/mule.xsd
http://www.mulesource.org/schema/mule/file/2.2 http://www.mulesource.org/schema/mule/file/2.2/mule-file.xsd
http://www.mulesource.org/schema/mule/jms/2.2 http://www.mulesource.org/schema/mule/jms/2.2/mule-jms.xsd">
<jms:activemq-connector name="JMSConnector" persistentDelivery="true"
specification="1.1" brokerURL="tcp://localhost:61616" />
<model name="JMSTest">
<service name="ServiceA">
<inbound>
<file:inbound-endpoint path="/test/dirA/"/>
</inbound>
<outbound>
<outbound-pass-through-router>
<jms:outbound-endpoint queue="test.queue"/>
</outbound-pass-through-router>
</outbound>
</service>
</mule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment