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!

can I trigger a java program using MQseries on NT

Status
Not open for further replies.

bonjovi

Programmer
Aug 18, 2000
1
IN
Can I trigger a java program which talks to CICS on mainframe, using IBM MQseries.
If yes then how and if not then why?

thanks in advance.


anil...

 
Try this

**
** Setup trigger to invoke the Backend Java application when
** an Order Create Message is put on the Net.Commerce outbound queue
**
DEFINE QLOCAL('NC.OrderCreateQ') REPLACE +
TRIGGER TRIGTYPE(every) +
INITQ(SYSTEM.DEFAULT.INITIATION.QUEUE) +
PROCESS (PROCESS.BACKENDAPP) +
DESCR('Take the message from other system')

DEFINE PROCESS(PROCESS.BACKENDAPP) REPLACE +
APPLTYPE(WINDOWSNT) +
APPLICID('java com.ibm.toolbelts.ncmq.ProcessOrder NC.QManager NC.OrderCreateQ NC.UpdateQ') +
DESCR('Process for application')
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top