Overview:
=========
  The purpose of the wsmq router quickstart is to provide a simple demonstration that illustrates how you 
  could route a message to IBM MQ

Prerequisites:
========================
  Please install the WMSQ JCA connector before running this quickstart.
  1. Copy wmq.jmsra.rar from your WSMQ install into the JBoss deploy dir
  2. Create a wmq.jmsrs-ds.xml within the deploy dir that has the following:
    
<?xml version="1.0" encoding="UTF-8"?>

<connection-factories>
  <tx-connection-factory>

    <jndi-name>WSMQConnectionFacto­ry</jndi-name>
    <xa-transaction/>
    <rar-name>wmq.jmsra.rar</rar-name>

    <connection-definition>
      javax.jms.ConnectionFactory
    </connection-definition>
    <config-property name="channel" type="java.lang.String">
      ENTER CHANNEL HERE!
    </config-property>
    <config-property name="hostName" type="java.lang.String">
     ENTER HOST NAME ! example 127.0.0.1 
    </config-property>
    <config-property name="port" type="java.lang.String">
    ENTER HOST NAME ! example 1414
    </config-property>
    <config-property name="queueManager" type="java.lang.String">
      ENTER QUEUE MANAGER ! example REDHAT.QM
    </config-property>
    <config-property name="transportType" type="java.lang.String">
      ENTER TRANSPORT TYPE ! example CLIENT
    </config-property>
  </tx-connection-factory>
  
  3. Copy com.ibm.mqetclient.jar from the WSMQ install into JBoss server lib
  4. Copy the following jars from the WSMQ install into the quickstart lib dir
      - com.ibm.mq.jar
      - com.ibm.mqjms.jar
      - dhbcore.jar
  
To Run '.esb' archive mode:
===========================
  1. In a command terminal window in this folder ("Window1"), type 'ant deploy'.
  2. Open another command terminal window in this folder ("Window2"), type
     'ant runtest'.
  3. Switch back to Application Server console to see the output from the ESB
  4. In this folder ("Window1"), type 'ant undeploy'.
