This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.
Configuring the JMS Inbound Protocol with WSO2 Message Broker
This section describes how you can configure the ESB's JMS inbound protocol with WSO2 Message Broker (WSO2 MB).
When you configure WSO2 ESB’s JMS inbound protocol with WSO2 MB, be sure to use WSO2 MB 3.0.0. We do not recommend WSO2 MB 2.2.0 or a previous version.
Follow the steps below to configure the JMS inbound protocol with WSO2 MB 3.0.0.
Start WSO2 MB
Follow the steps given below to set up and start the WSO2 MB server.
Download and install WSO2 MB. For instructions, see Getting Started with WSO2 MB. The unzipped WSO2 MB distribution folder will be referred to asÂ
<MB_HOME>
 throughout the documentation.Note
It is not possible to start multiple WSO2 products with their default configurations simultaneously in the same environment. Since all WSO2 products use the same port in their default configuration, there will be port conflicts. Therefore, to avoid port conflicts, apply a port offset in the
<MB_HOME>/repository/conf/carbon.xml
 file by changing the offset value as shown below.<Ports> <!-- Ports offset. This entry will set the value of the ports defined below to the define value + Offset. e.g. Offset=2 and HTTPS port=9443 will set the effective HTTPS port to 9445 --> <Offset>1</Offset>
- Open a command line terminal and navigate to theÂ
<MB_HOME>/bin
 directory. - Execute one of the following startup scripts to start the broker profile:
- On Linux/Mac OS:Â Â sh wso2server.sh
On Windows:Â Â wso2server.bat --run
Set up WSO2 ESB to connect with the broker
When the ESB is started, it should be able to connect to the relevant queue in WSO2 MB. Follow the steps given below to set up the ESB to connect with the broker.
- Copy the following JAR files from theÂ
<MB_HOME>/clent-lib folder to the <ESB_HOME>/repository/components/libÂ
folder.andes-client-3.0.1.jar
geronimo-jms_1.1_spec-1.1.0.wso2v1.jar
org.wso2.securevault-1.0.0-wso2v2.jar
Open theÂ
<ESB_HOME>/repository/conf/jndi.propertiesÂ
file and create the connection from the ESB to the WSO2 MB runtime as shown below:Â# register some connection factories # connectionfactory.[jndiname] = [ConnectionURL] connectionfactory.QueueConnectionFactory = amqp://admin:admin@clientID/carbon?brokerlist='tcp://localhost:5673' connectionfactory.TopicConnectionFactory = amqp://admin:admin@clientID/carbon?brokerlist='tcp://localhost:5673' # register some queues in JNDI using the form # queue.[jndiName] = [physicalName] queue.JMSMS=JMSMS queue.StockQuotesQueue = StockQuotesQueue
Note the following in the above configuration:
The virtual host is carbon.
- The ESB is connecting to a queue namedÂ
JMSMS
. The topic is commented out since it is not required in this scenario. However, in order to avoid getting theÂ
javax.naming.NameNotFoundException:TopicConnectionFactory
 exception during server startup, we will maintain theÂTopicConnectionFactory
 as well.Â
You can now start the WSO2 ESB server and configure the JMS inbound endpoint.
Configure the JMS inbound listener
Configure the JMS inbound listener in the ESB by using the management console:
- Ensure that WSO2 MB is still running.
- Open a command line terminal (or a shell in Linux) and navigate to theÂ
<ESB_HOME>/bin
 directory. - Execute one of the following commands to start the ESB:
- On Linux/Mac OS: Â
sh wso2server.sh
On Windows: Â
wso2server.bat
- On Linux/Mac OS: Â
- Open the management console of the ESB (from https://10.100.5.12:9443/carbon) and click Inbound Endpoints (in the Main menu) to start creating the endpoint. Listed below are the values you need to provide:
Endpoint Name:Â jms_inbound
Type:Â jms
Sequence:Â request
Error Sequence:Â fault
Suspend:Â false
interval:Â 1000
sequential:Â true
coordination:Â true
java.naming.factory.initial:Â org.wso2.andes.jndi.PropertiesFileInitialContextFactory
java.naming.provider.url:Â repository/conf/jndi.properties
transport.jms.ConnectionFactoryJNDIName:Â QueueConnectionFactory
transport.jms.ConnectionFactoryType:Â queue
transport.jms.Destination:Â JMSMS
transport.jms.SessionTransacted:Â false
transport.jms.SessionAcknowledgement:Â AUTO_ACKNOWLEDGE
transport.jms.CacheLevel:Â 1
For more information on the JMS configuration parameters given above, see JMS Connection Factory Parameters.
Click Save once you have entered all the values as shown below.
Following is a sample JMS inbound listener configuration:
Now you have an instance of WSO2 MB and an ESBÂ inbound endpoint configured and running. You can verify this by checking the log in the ESB startup terminal.