Author |
Message |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Tue Aug 01, 2006 7:56 am Subject: C# Dynamic Reply Queue |
finally got it.
MQMT_REQUEST was correct
I had to add MQPMO_NO_SYNCPOINT to the put message options. So I finally got a message back...it's just an error message.
Thanks for all the help eve ... |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Tue Aug 01, 2006 7:12 am Subject: C# Dynamic Reply Queue |
Ah.
Probably they want you to set MQMD.MsgType=MQMT_REQUEST.
of course that doesn't work...I'm getting used to this  |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Tue Aug 01, 2006 5:30 am Subject: C# Dynamic Reply Queue |
so there was some talk that I might be missing a Message Descriptor? |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Mon Jul 31, 2006 10:59 am Subject: C# Dynamic Reply Queue |
so we're still at a stand still. It might be a server side issue, but we haven't been able to talk to the implementation group that's familiar with the .NET side of things yet.
I can't even run a ... |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Fri Jul 28, 2006 8:54 am Subject: C# Dynamic Reply Queue |
Then you can only be writing to the same queue that the server app is reading from.
And you should not be thinking of it as a remote queue or a qremote becuase your application is directly connec ... |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Fri Jul 28, 2006 7:54 am Subject: C# Dynamic Reply Queue |
yeah...we only have one active QMgr |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Fri Jul 28, 2006 7:51 am Subject: C# Dynamic Reply Queue |
should I be referencing this as a remote queue? |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Fri Jul 28, 2006 6:54 am Subject: Re: Tried XMS .NET? |
Hi,
I believe what you are trying to achieve is built into XMS .NET abstractions - see IBM.XMS.Requestor. A new version of XMS .NET has just been released. Please see http://www.mqseries.net/phpBB2 ... |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Fri Jul 28, 2006 6:29 am Subject: C# Dynamic Reply Queue |
upon talking to our MQ people the server should be sending a reply. I set the wait time to 30 seconds, which, if it takes longer than that I feel like is a different problem
Yep. But you should a ... |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Fri Jul 28, 2006 6:26 am Subject: C# Dynamic Reply Queue |
My question was if there was a Server program that was supposed to be sending you a reply.
If there isn't, then you won't get a reply.
If there is, then maybe you're not waiting long enough for ... |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Fri Jul 28, 2006 6:02 am Subject: C# Dynamic Reply Queue |
So if nobody is reading from that queue, then nobody will be sending you a reply, so there won't be anything to get.
You can run the sample program AMQSECHO against that queue, and it will just bou ... |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Fri Jul 28, 2006 5:48 am Subject: C# Dynamic Reply Queue |
jefflowrey-
I'm pretty sure that NY3CC50A.CICS.REQUEST is a test queue and not really being used by anyone.
tleichen-
This was the name I was told to use. Problem here is that the guys working w ... |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Fri Jul 28, 2006 5:33 am Subject: C# Dynamic Reply Queue |
so now I've created the dynamic queue prior to the put and the get and I have this
Sample NMQWRLD start
The queue manager name is 'CSQ1'.
Message sent to 'NY3CC50A.CICS.REQUEST'.
Message will be ... |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Thu Jul 27, 2006 1:01 pm Subject: C# Dynamic Reply Queue |
so then I have to create the dynamic reply queue prior to putting the message is what you're saying? |
Topic: C# Dynamic Reply Queue |
mikeco3181
Replies: 35 Views: 30932
|
Forum: IBM MQ API Support Posted: Thu Jul 27, 2006 12:54 pm Subject: C# Dynamic Reply Queue |
Are you waiting enough time to have your messages processes and replied back?
I just thought of that right before i read this.
I added the following:
mqGetMsgOpts.WaitInterval = 30000;
... |