Created
August 20, 2012 02:23
-
-
Save mbonano/3399444 to your computer and use it in GitHub Desktop.
Mule Config With Sample ActiveMQ Connector
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
<?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