Bug 778808 (SOA-1258)

Summary: Multiple minor issues with wsmq_router quickstart
Product: [JBoss] JBoss Enterprise SOA Platform 4 Reporter: Len DiMaggio <ldimaggi>
Component: JBossESB, ExamplesAssignee: Kevin Conner <kevin.conner>
Status: CLOSED WONTFIX QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 4.3 CP01   
Target Milestone: ---   
Target Release: FUTURE   
Hardware: Unspecified   
OS: Unspecified   
URL: http://jira.jboss.org/jira/browse/SOA-1258
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2011-11-01 20:15:10 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:

Description Len DiMaggio 2009-03-28 02:12:32 UTC
project_key: SOA

Changes to make to wsmq_router quickstart:

1) In src/org/jboss/soa/esb/samples/quickstart/wsmq/test/SendJMSMessage.java, change this line:

   System.out.println("Sending message : " + msg);

   to:

   System.out.println("Sending message : " + new String(msg) );

2) In the readme file, instruct the user to create the queues needed by the quickstart in IBM MQ before the quickstart is run:

    DEFINE QLOCAL(quickstart_wsmqrouter_esb)
    DEFINE QLOCAL(quickstart_wsmqrouter_gw)
    DEFINE QLOCAL(ESB_JMS_OUT)

3) In the readme file, instruct the user to set the IBM MQ elements in
wsmq-queue-service.xml to match the MQ server settings.

4) In the readme file, change the port number example to reference PORT NUMBER not HOSTNAME:
    <config-property name="port" type="java.lang.String">
    ENTER HOST NAME ! example 1414
    </config-property>

5) In the readme file and jboss-esb.xml, replace the reference to 127.0.0.1 to localhost - we're seeing an issue with MQ mis-interpreting IP addresses as valid URIs.

6) In the readme file, add an example of "SYSTEM.DEF.SVRCONN" for the "channel" value.

(Some of these points may be obvious to MQ users, but more complete documentation may help some users.)