What is it?
This quickstart demonstrates the use of external JMS clients with JBoss Enterprise Application Platform 6 or JBoss AS 7.
It contains the following:
A message producer that sends messages to a JMS destination deployed to a JBoss Enterprise Application Platform 6 or JBoss AS 7 server.
A message consumer that receives message from a JMS destination deployed to a JBoss Enterprise Application Platform 6 or JBoss AS 7 server.
System requirements
All you need to build this project is Java 6.0 (Java SDK 1.6) or better, Maven 3.0 or better.
The application this project produces is designed to be run on JBoss Enterprise Application Platform 6 or JBoss AS 7.
Configure Maven
If you have not yet done so, you must Configure Maven before testing the quickstarts.
Add an Application User
This quickstart uses secured management interfaces and requires that you create an application user to access the running application. Instructions to set up the quickstart application user can be found here: Add an Application User
Configure the JBoss Enterprise Application Platform 6 server
If you are using the JBoss AS 7 Quickstart distribution, the server configuration file already contains the JMS test queue and you can skip this step.
However, if you are using the JBoss Enterprise Application Platform 6 distribution, you need to add the JMS test queue to the application server configuration file. You can configure JMS using the JBoss CLI or by manually editing the configuration file.
Modify the Server JMS Configuration using the JBoss CLI Tool
-
Start the JBoss Enterprise Application Platform 6 or JBoss AS 7 Server by typing the following:
For Linux: JBOSS_HOME_SERVER_1/bin/standalone.sh -c standalone-full.xml For Windows: JBOSS_HOME_SERVER_1\bin\standalone.bat -c standalone-full.xml -
To start the JBoss CLI tool, open a new command line, navigate to the JBOSS_HOME directory, and type the following:
For Linux: bin/jboss-cli.sh --connect For Windows: bin\jboss-cli.bat --connect -
At the prompt, type the following:
[standalone@localhost:9999 /] jms-queue add --queue-address=testQueue --entries=queue/test,java:jboss/exported/jms/queue/test
Modify the Server JMS Configuration Manually
- Open the file: JBOSS_HOME/standalone/configuration/standalone-full.xml
- Add the JMS
testqueue as follows:-
Find the messaging subsystem:
<subsystem xmlns="urn:jboss:domain:messaging:1.1"> -
Scroll to the end of this section and add the following XML after the
</jms-connection-factories>end tag but before the</hornetq-server>element:<jms-destinations> <jms-queue name="testQueue"> <entry name="queue/test"/> <entry name="java:jboss/exported/jms/queue/test"/> </jms-queue> </jms-destinations> - Save the changes and close the file.
-
Start JBoss Enterprise Application Platform 6 or JBoss AS 7 with the Full Profile
- Open a command line and navigate to the root of the JBoss server directory.
-
The following shows the command line to start the server with the full profile:
For Linux: JBOSS_HOME/bin/standalone.sh -c standalone-full.xml For Windows: JBOSS_HOME\bin\standalone.bat -c standalone-full.xml
Build and Deploy the Quickstart
To run the quickstart from the command line:
Make sure you have started the JBoss server. See the instructions in the previous section.
-
Open a command line and navigate to the root of the helloworld-jms quickstart directory:
cd PATH_TO_QUICKSTARTS/helloworld-jms -
Type the following command to compile and execute the quickstart:
For JBoss Enterprise Application Platform 6 (Maven user settings NOT configured): mvn clean compile exec:java -s PATH_TO_QUICKSTARTS/example-settings.xml For JBoss AS 7 or JBoss Enterprise Application Platform 6 (Maven user settings configured): mvn clean compile exec:java
Investigate the Console Output
If the maven command is successful, with the default configuration you will see output similar to this:
Mar 14, 2012 1:38:58 PM org.jboss.as.quickstarts.jms.HelloWorldJMSClient main
INFO: Attempting to acquire connection factory "jms/RemoteConnectionFactory"
Mar 14, 2012 1:38:58 PM org.jboss.as.quickstarts.jms.HelloWorldJMSClient main
INFO: Found connection factory "jms/RemoteConnectionFactory" in JNDI
Mar 14, 2012 1:38:58 PM org.jboss.as.quickstarts.jms.HelloWorldJMSClient main
INFO: Attempting to acquire destination "jms/queue/test"
Mar 14, 2012 1:38:58 PM org.jboss.as.quickstarts.jms.HelloWorldJMSClient main
INFO: Found destination "jms/queue/test" in JNDI
Mar 14, 2012 1:38:58 PM org.jboss.as.quickstarts.jms.HelloWorldJMSClient main
INFO: Sending 1 messages with content: Hello, World!
Mar 14, 2012 1:38:58 PM org.jboss.as.quickstarts.jms.HelloWorldJMSClient main
INFO: Received message with content Hello, World!
Note: After the above INFO message, you may see the following error. You can ignore the error as it is a well known error message and does not indicate the maven command was unsuccessful in any way.
Mar 14, 2012 1:38:58 PM org.jboss.naming.remote.protocol.v1.RemoteNamingStoreV1$MessageReceiver handleEnd
ERROR: Channel end notification received, closing channel Channel ID cd114175 (outbound) of Remoting connection 00392fe8 to localhost/127.0.0.1:4447
Optional Properties
The example provides for a certain amount of customization for the mvn:exec plugin using the system properties.
-
usernameThis username is used for both the JMS connection and the JNDI look-up. Instructions to set up the quickstart application user can be found here: Add an Application User.
Default:
quickstartUser -
passwordThis password is used for both the JMS connection and the JNDI look-up. Instructions to set up the quickstart application user can be found here: Add an Application User
Default:
quickstartPwd1! -
connection.factoryThe name of the JMS ConnectionFactory you want to use.
Default:
jms/RemoteConnectionFactory -
destinationThe name of the JMS Destination you want to use.
Default:
jms/queue/test -
message.countThe number of JMS messages you want to produce and consume.
Default:
1 -
message.contentThe content of the JMS TextMessage.
Default:
"Hello, World!" -
java.naming.provider.urlThis property allows configuration of the JNDI directory used to lookup the JMS destination. This is useful when the client resides on another host.Default:
"localhost"
Run the Quickstart in JBoss Developer Studio or Eclipse
You can also start the server and deploy the quickstarts from Eclipse using JBoss tools. For more information, see Use JBoss Developer Studio or Eclipse to Run the Quickstarts
Debug the Application
If you want to debug the source code or look at the Javadocs of any library in the project, run either of the following commands to pull them into your local repository. The IDE should then detect them.
mvn dependency:sources
mvn dependency:resolve -Dclassifier=javadoc
Share the Knowledge
Find this guide useful?
Feedback
Find a bug in the guide? Something missing? You can fix it by forking the repository, making the correction and sending a pull request. If you're just plain stuck, feel free to ask a question in the user discussion forum.
Recent Changelog
- Feb 12, 2013: Add quickstart source repository of record to the readme files Sande Gilda
- Feb 07, 2013: Missed reference to topic in helloworld-jms readme file Sande Gilda
- Feb 06, 2013: Fix root readme and helloworld-jms instructions Sande Gilda
- Jan 22, 2013: Fix for issue 404 - meet new minimum password requirements Sande Gilda
- Sep 06, 2012: Add jboss-cli commands in addition to the manual edits of the server config file. fix typo in postgresql Sande Gilda
- Sep 04, 2012: Fix typo in java.naming.provider.url property Sande Gilda
- Sep 11, 2012: Add target product (https://issues.jboss.org/browse/jdf-108) Sande Gilda
- May 18, 2012: Move metadata to quickstarts Pete Muir
- May 01, 2012: Fix readme file issues: helloworld-jms warns of error message, mail had wrong paths and names for configuration files Sande Gilda
- Apr 23, 2012: Fix for jira jbpapp-8681: need instructiosn to add jms test queue for eap6 server only Sande Gilda
- Apr 11, 2012: Remove odd trailing slashes Pete Muir
- Apr 10, 2012: Solve issue #194 :-) auto transform links from readme.md -> readme.html Pete Muir
- Apr 05, 2012: Missed adding the arquillian instructions, fixed indentations, modified jta-crash-rec and jts-distributed-crash-rec, add missing authors Sande Gilda
- Apr 01, 2012: More readme cleanup Sande Gilda
- Mar 26, 2012: Attempt to standardize readme.md files Sande Gilda