Skip to content

Instantly share code, notes, and snippets.

@playerjamesbattleground
Created February 5, 2014 03:17
Show Gist options
  • Save playerjamesbattleground/8816915 to your computer and use it in GitHub Desktop.
Save playerjamesbattleground/8816915 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:jms="http://www.mulesoft.org/schema/mule/jms"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:spring="http://www.springframework.org/schema/beans" version="EE-3.4.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.mulesoft.org/schema/mule/jms http://www.mulesoft.org/schema/mule/jms/current/mule-jms.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd
http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd ">
<context:property-placeholder
location="activemq.properties,documentlifecycle-service.properties,iol.properties,esb.tech.properties" />
<jms:activemq-connector name="Service_JMS_Connector"
numberOfConsumers=30 specification="1.1" validateConnections="true"
jndiInitialFactory="org.apache.activemq.jndi.ActiveMQInitialContextFactory"
jndiProviderUrl="${jms.jndiProviderUrl}"
connectionFactoryJndiName="${jms.connectionFactoryJndiName}"
jndiDestinations="true" doc:name="Service_JMS_Connector">
</jms:activemq-connector>
<!-- GetOrder JMS Endpoints -->
<jms:endpoint queue="${getorder.request.queue}"
name="Service_GetOrder_Request_JMS_Endpoint" mimeType="text/xml"
connector-ref="Service_JMS_Connector" doc:name="Service GetOrder Request JMS Endpoint" />
<!-- InvoiceOrder JMS Endpoints -->
<jms:endpoint queue="${invoiceorder.request.queue}"
name="Service_InvoiceOrder_Request_JMS_Endpoint" mimeType="text/xml"
connector-ref="Service_JMS_Connector" doc:name="Service InvoiceOrder Request JMS Endpoint" />
</mule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment