Create Temp Dynamic Queue using Java

2004-02-26 Thread Khedr, Hossam (GEI, MORT)
Hi All, Looking for the class name or method to create a tempDynamicQueue in a java program. 1) The program takes a String parameter 2) Create a temp dynamic queue 3) Create a MQMD, the new temp dynamic queue becomes a ReplyToQueue in the header 4) Wait on the new temp dynamic queue to get the req

Re: Create Temp Dynamic Queue using Java

2004-02-26 Thread Roger Lacroix
Hi, You don't need to worry about deleting the temp dymanic queue, just close it (the queue manager will delete it). Here's a code snippet String inputQName = "SYSTEM.DEFAULT.MODEL.QUEUE"; String qMgrName = "MyQMgrName"; String DynamicQName = "ABC.*"; int openInputOptions = MQC.MQOO_INQUI

Re: Create Temp Dynamic Queue using Java

2004-02-26 Thread Richard Brunette
| | cc: | | Subject: Create Temp Dynamic Queue using Java | >| Hi All, Looking for the class name or method to c