Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MQClient triggering

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
How can I run a trigger application at client side.I am working on windows nt and I have downloaded the patch(ma7k.zip) also(patch running fine).What all settings I am supposed to do on either client side or server side for triggering to happen.
Thanks
 
You need to create a client connection channel between the client and the server first. The trigger monitor runs as an MQ client, connecting to the server via this channel.

Create a SVRCONN channel on the server and call it CLIENT_CHANNEL.

On the client, use the MQSERVER variable to easily setup a client channel definition(i.e. MQSERVER=CLIENT_CHANNEL/tcp/142.192.168.8(1414) ). Make sure it's defined as a SYSTEM environment variable, not a user-defined one. Make sure you have an MQ listener running on the server on port 1414.

You need to tell the trigger monitor the name of the queue manager, as well as the name of the initiation queue on the server (where trigger messages will be written on the server side).

That's all you need.

Cheers,

Scott Meridew
Certified MQSeries Specialist
MQ Squared Inc.
smeridew@sympatico.ca


Scott Meridew
Certified MQSeries Specialist,MCSE
MQ Squared Inc.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top