
************************************************************************
* Setup the queues required by the Application *
************************************************************************


* Order Queue: 
    DEFINE QLOCAL('App.OrderQ') REPLACE +
           USAGE(normal) +
           DESCR('Queue For Taking Orders')

* Initiation Queue: 
    DEFINE QLOCAL('App.InitiateQ') REPLACE +
           USAGE(normal) +
           DESCR('Initiation Queue For Holding Trigerd Messages')

* Initiation Queue: 
    DEFINE QLOCAL('App.ProcessQ') REPLACE +
           USAGE(normal) +
           DESCR('Processing Queue')


* Error Queue: 
   DEFINE QLOCAL('App.ErrorQ') REPLACE +
           USAGE(normal) +
           DESCR('Queue For Handling Errors')
**
** Setup the MQI Channel for the MQSeries client
**

* Application Channel:
    DEFINE CHANNEL(App.Channel) +
           CHLTYPE(SVRCONN) REPLACE  +
           TRPTYPE(tcp)  +
           MCAUSER(' ') +
           DESCR('Channel to connect to MQSeries Client')

********************************************************************/



