Skip to content

Instantly share code, notes, and snippets.

@mbonano
Created August 20, 2012 02:23
Show Gist options
  • Save mbonano/3399444 to your computer and use it in GitHub Desktop.
Save mbonano/3399444 to your computer and use it in GitHub Desktop.
Mule Config With Sample ActiveMQ Connector
<?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:mule="http://www.mulesoft.org/schema/mule/core"
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/jms http://www.mulesoft.org/schema/mule/jms/3.1/mule-jms.xsd">
<jms:activemq-connector name="jmsConnector"
brokerURL="tcp://localhost:61616"/>
<jms:activemq-xa-connector name="jmsXAConnector"
brokerURL="tcp://localhost:61616"/>
...
</mule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment