|
RSS Feed - WebSphere MQ Support
|
RSS Feed - Message Broker Support
|
 |
|
MQ CICS/DPL Bridge setup question |
« View previous topic :: View next topic » |
Author |
Message
|
BarryB |
Posted: Thu Jul 29, 2004 10:22 am Post subject: MQ CICS/DPL Bridge setup question |
|
|
Acolyte
Joined: 01 Jul 2004 Posts: 53 Location: Vernon Hills, Il
|
When you are setting up the CICS bridge on the OS/390, the systems manual advised you to setup a local queue for the bridge. Does this queue need to be a trigger queue with the process defined to CKBR? Or do you just define the queue as local without triggering, as the bridge takes care of the rest?
Thanks,
B |
|
Back to top |
|
 |
oz1ccg |
Posted: Thu Jul 29, 2004 11:56 am Post subject: |
|
|
 Yatiri
Joined: 10 Feb 2002 Posts: 628 Location: Denmark
|
Have you looked in the System Setup Guide ??
Yes you have..
Have you looked in thlqual.SCSQPROC(CSQ4CKBM), and seen how SYSTEM.CICS.BRIDGE.QUEUE is defined ??
Code: |
DEFINE QLOCAL('SYSTEM.CICS.BRIDGE.QUEUE') REPLACE +
DESCR('CICS BRIDGE REQUEST QUEUE') +
* Permit shared access
SHARE +
* FIFO Delivery
MSGDLVSQ(FIFO) +
* Persistent
DEFPSIST(YES) +
* Backout hardened
HARDENBO +
* Trigger on 1st message
* using default initq
TRIGGER TRIGTYPE(FIRST) +
PROCESS('CICS_BRIDGE') +
INITQ('CICS01.INITQ')
*
*
********************************************************************
* Process definition
* - required for triggering of the bridge monitor transaction, CKBR
* - the USERDATA as defined here is merely an example and can be
* changed as required
* - any valid authentication option can be specified in place of
* the default, LOCAL
* - the WaitInterval for the bridge task MQGET timeout can be
* changed (from 20secs) to suit your system requirements
********************************************************************
DEFINE PROCESS('CICS_BRIDGE') REPLACE +
DESCR('CICS BRIDGE MONITOR') +
APPLICID('CKBR') +
APPLTYPE(CICS) +
USERDATA('AUTH=LOCAL,WAIT=20')
*
*
******************************************************************** |
And as you can see CKBR is a triggered transaction.
I can recoment you to read Chapter 6. Customizing the CICS bridge from System Setup Guide.
USERDATA on the process controls how the CICS bridge do security, and other stuff.
Just my $0.02  _________________ Regards, Jørgen
Home of BlockIP2, the last free MQ Security exit ver. 3.00
Cert. on WMQ, WBIMB, SWIFT. |
|
Back to top |
|
 |
Nizam |
Posted: Thu Jul 29, 2004 8:13 pm Post subject: |
|
|
Disciple
Joined: 10 Feb 2004 Posts: 160
|
I am just adding more info to oz1ccg.
If you dont want your queue triggered you can just use
CKBR specifying Q=SYSTEM.CICS.BRIDGE.QUEUE with AUTH and WAIT options. |
|
Back to top |
|
 |
BarryB |
Posted: Fri Jul 30, 2004 6:32 am Post subject: |
|
|
Acolyte
Joined: 01 Jul 2004 Posts: 53 Location: Vernon Hills, Il
|
Thanks for the information. I am assuming you do not need triggering setup on CKBR if the CICS systems programmer puts that tran in the ice chain. Otherwise, I would have to create the trigger queue and process definition as stated. I thank you for your recommendations and help!! |
|
Back to top |
|
 |
|
|
 |
|
Page 1 of 1 |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|