Author |
Message |
Topic: Creating Dynamic Queue in c# |
paul1492
Replies: 11 Views: 24473
|
Forum: IBM MQ API Support Posted: Wed May 26, 2021 3:28 am Subject: Re: Creating Dynamic Queue |
Thanks for your post Roger. That helped out a lot. I think I got it working. |
Topic: Creating Dynamic Queue in c# |
paul1492
Replies: 11 Views: 24473
|
Forum: IBM MQ API Support Posted: Mon May 03, 2021 5:20 pm Subject: Re: Creating Dynamic Queue |
Check your logic. Read the IBM doc on model queues and dynamic queues - https://www.ibm.com/docs/en/ibm-mq/9.2?topic=queues-dynamic-model
You can't get or put messages to a model queue.
A model ... |
Topic: Creating Dynamic Queue in c# |
paul1492
Replies: 11 Views: 24473
|
Forum: IBM MQ API Support Posted: Mon May 03, 2021 3:43 pm Subject: Re: Creating Dynamic Queue in c# |
To open a queue for input, specify MQC.MQOO_INPUTCompiler error, no such thing as MQC.MQOO_INPUT. Changed it to MQC.MQOO_INPUT_EXCLUSIVE:
mqQMgr.AccessQueue(
_mQConfigurationReplyQueue, MQC.MQ ... |
Topic: Creating Dynamic Queue in c# |
paul1492
Replies: 11 Views: 24473
|
Forum: IBM MQ API Support Posted: Mon May 03, 2021 2:56 pm Subject: Re: Creating Dynamic Queue |
Then, I'm having troubles reading from the dyanmic queue.
Please be more precise. What troubles are you having? What ReasonCode from what MQ call?I am getting the exception MQRC_OBJECT_ALREADY_EXI ... |
Topic: Creating Dynamic Queue in c# |
paul1492
Replies: 11 Views: 24473
|
Forum: IBM MQ API Support Posted: Mon May 03, 2021 1:30 pm Subject: Creating Dynamic Queue in c# |
How do I read from a model queue in C#?
I'm writing to a ABC.QA.T00.FTP.TRIGGER.REQUEST queue. Then, I need to do the following:
2) Open/specify ABC.QM.REPLY.0001 and ABC.* for your (dynamic ... |