Hide Forgot
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.)