Skip to content

Instantly share code, notes, and snippets.

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