This section describes how to configure the WSO2 Enterprise Integrator's JMS transport with Microsoft Message Queuing (MSMQ).
...
Follow the steps below to set up and configure WSO2 EI with MSMQ.
1. Download Download the axis2-transport-msmq-
12.
10.0-
wso2v6wso2v2.jar
for 64x or 32x, and place that in
file and add it to the <EI_HOME>/
dropins dropins
directory. MSMQ bridging requires JNI invocation, and WSO2 ships two dlls for 64bit and 32bit O/S respectively. Therefore, make sure you download the correct file suitable for your environment. This file provides the JNI invocation required by MSMQ bridging.
2. Install Visual C++ 2008 (VC9). It works with Microsoft Visual Studio 2008 Express.
...
4. If you haven't already, download and install WSO2 EI as described in Getting Started .
Setting up the JMS Listener
5. Add the following configuration to <EI_HOME>/conf/axis2/axis2.xml file.
Code Block | ||
---|---|---|
| ||
<transportReceiver name="msmq" class="org.apache.axis2.transport.msmq.MSMQListener"> <parameter name="msmq.receiver.host" locked="false">localhost</parameter> </transportReceiver> |
Setting up the JMS Sender
6. To enable the JMS transport sender, add the following JMS transport listener configuration in <EI_HOME>/conf/axis2/axis2.xml file.
Code Block | ||
---|---|---|
| ||
<transportSender name="msmq" class="org.apache.axis2.transport.msmq.MSMQSender"/> |
Info | ||
---|---|---|
If you get an error message similar to the following when you start the Integration Profile after configuring the JMS transport with MSMQ, you must check whether the
|
Tip |
---|
For details on the JMS configuration parameters used in the code segments above, see JMS Connection Factory Parameters. |
...