From 8957cd74620202ebfef2674ab347d4345277bb9a Mon Sep 17 00:00:00 2001 From: Sande Gilda Date: Mon, 23 Apr 2012 11:39:54 -0400 Subject: [PATCH] Fix for JIRA JBPAPP-8681: need instructiosn to add JMS test queue for EAP6 server only --- helloworld-jms/README.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/helloworld-jms/README.md b/helloworld-jms/README.md index d4d8c02d40..c48569867a 100644 --- a/helloworld-jms/README.md +++ b/helloworld-jms/README.md @@ -33,6 +33,34 @@ 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](../README.md#addapplicationuser) +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. + +1. Open the file: JBOSS_HOME/standalone/configuration/standalone-full.xml +2. Add the JMS `test` queue as follows: + * Find the messaging subsystem: + + + * Scroll to the end of this section and add the following XML after the `` end tag but before the `` element: + + + + + + + + + + + + * Save the changes and close the file. + + + Start JBoss Enterprise Application Platform 6 or JBoss AS 7 with the Full Profile ---------------