This section describes how to integrate WSO2 Message Broker with WSO2 App Server to facilitate subscribing web services to JMS queues or topics, and receiving messages from the broker.
...
1. Download and install WSO2 MB according to the instructions in the Getting Started.
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 to 1. For example,
...
2. Start the Message Broker by running <MB_HOME>/bin/wso2server.sh
(on Linux) or or <MB_HOME>/bin/wso2server.bat
(on Windows). Note that Message Broker must be up and running before starting the App Server.
...
1. Download and install WSO2 AS binary distribution. Instructions can be found in the 'Installation Guide' of of the respective AS documentation version. For example, Installation Guide. The The unzipped AS distribution folder is referred to as AS<AS_
HOMEHOME>
.
2. WSO2 AS doesn't come with a default enabled JMS transport configuration to communicate with the Message Broker. Therefore we need to add a <transport receiver>
block for MB 2.x.x by editing $AS<AS_
HOMEHOME>/repository/conf/axis2/axis2.xml
file as follows.
Code Block | ||
---|---|---|
| ||
<!--Configure for JMS transport support with WSO2 MB 2.x.x --> <transportReceiver name="jms" class="org.apache.axis2.transport.jms.JMSListener"> <parameter name="myTopicConnectionFactory" locked="false"> <parameter name="java.naming.factory.initial" locked="false">org.wso2.andes.jndi.PropertiesFileInitialContextFactory</parameter> <parameter name="java.naming.provider.url" locked="false">repository/conf/jndi.properties</parameter> <parameter name="transport.jms.ConnectionFactoryJNDIName" locked="false">TopicConnectionFactory</parameter> <parameter name="transport.jms.ConnectionFactoryType" locked="false">topic</parameter> </parameter> <parameter name="myQueueConnectionFactory" locked="false"> <parameter name="java.naming.factory.initial" locked="false">org.wso2.andes.jndi.PropertiesFileInitialContextFactory</parameter> <parameter name="java.naming.provider.url" locked="false">repository/conf/jndi.properties</parameter> <parameter name="transport.jms.ConnectionFactoryJNDIName" locked="false">QueueConnectionFactory</parameter> <parameter name="transport.jms.ConnectionFactoryType" locked="false">queue</parameter> </parameter> <parameter name="default" locked="false"> <parameter name="java.naming.factory.initial" locked="false">org.wso2.andes.jndi.PropertiesFileInitialContextFactory</parameter> <parameter name="java.naming.provider.url" locked="false">repository/conf/jndi.properties</parameter> <parameter name="transport.jms.ConnectionFactoryJNDIName" locked="false">QueueConnectionFactory</parameter> <parameter name="transport.jms.ConnectionFactoryType" locked="false">queue</parameter> </parameter> </transportReceiver> |
3. Also, uncomment <transport sender>
block for JMS in the same file as follows:
Code Block | ||
---|---|---|
| ||
<!-- uncomment this and configure to use connection pools for sending messages> <transportSender name="jms" class="org.apache.axis2.transport.jms.JMSSender"/--> |
...
4. Then add the following 'jndi.properties' into $ASthe <AS_
HOMEHOME>/repository/conf/
directory in order to point to the running Message Broker.
Code Block | ||
---|---|---|
| ||
#
# Copyright (c) 2011, WSO2 Inc. (http://wso2.com) All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# 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.SimpleEventSinkService = SimpleEventSinkService
# register some topics in JNDI using the form
# topic.[jndiName] = [physicalName] |
In this file add the names of the queues or topics that needs to be created in the Message Broker, for the corresponding service in the App Server. For example, if the deployed service which needs to subscribe to a queue in MB is named SimpleEventSinkService, add a queue named 'SimpleEventSinkService' into the jndi.properties file as shown above. When there are messages published to 'SimpleEventSinkService' queue in MB, the SimpleEventSinkService in App Server will receive them and process accordingly.
5. Copy the following jar files from the <MB_HOME>/client-lib
folder to the <AS_HOME>/repository/components/lib
folder. They are client libraries required from Message Broker to AS.
• andes-client-0.13.wso2v8
• geronimo-jms_1.1_spec-1.1.0.wso2v1
Info | ||
---|---|---|
| ||
In addition to that , for the App Server version 5.1.0, it is needed to replace $<ASreplace the <AS_HOME>/repository/components/plugins/axis2-transport-jms_1.1.0.wso2v7.jar file with the one attached here. The reason for this is some recent JMS transport level changes which affects into the integration of AS with MB. However, this issue will be fixed from the App Server version 5.1.1 onwards and this replacement would not be not necessary. |
6. Once the JMS transport is enabled for App Server, it will reflect in all the services deployed in App Server and this can cause an unexpected error while the server start starts up. Message Broker handles this for axis2 services by using dynamic queue/topic support, however the REST, JS services deployed in App Server still needs to be explicitly configured. Therefore, edit and add the following parameters into $<ASthe <AS_HOME>/repository/deployment/server/servicemetafiles/admin/RESTSample.xml
file. Make sure the exposedAllTransports parameter is set to 'false'.
...
Now save all the files and start the App Server by running <AS_HOME>/bin/wso2server.sh
(on Linux) or or <AS_HOME>/bin/wso2server.bat
(on Windows).
...
Use Case: A sample web service
...
in WSO2 AS subscribes to WSO2 Message Broker
This section describes, through a usecase, how to integrate WSO2 Message Broker for using a WSO2 AS web service as JMS subscriber.
Usecase
Deploy use case demonstrates how a web service deployed in WSO2 AS can work as a JMS subscriber for WSO2 MB. In this use case, you will be deploying a sample web service in App Server which listens on SOAP messages and print prints message string into console. Then a JMS queue for the name of this service will be generated in the Message Broker. Publish a message to this queue and it will be received and printed into the App Server console by the sample web service.
1. strings into the console.
- Log into App Server
...
- .
- Go to Home --> Manager --> Services --> Add --> AAR Service
...
- and upload SimpleEventSinkService.aar archive file, which can be downloaded from here. A JMS queue with the name of this service will be generated in the Message Broker.
Log in to Message Broker and publish a text message into the created SimpleEventSinkService queue using the message sender UI.
Code Block language html/xml <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://services.samples"> <soapenv:Header/> <soapenv:Body> <ser:receive> <!--Optional:--> <ser:message>Test Message</ser:message> </ser:receive> </soapenv:Body> </soapenv:Envelope>
...
- Go to the App Server terminal
...
- and the published message will
...
- display in the console as
...
- 'Got the message ==> Test Message'.