Author |
Message |
Topic: Error Code 2039 -- queue not open for output |
JohnMN
Replies: 4 Views: 7288
|
Forum: IBM MQ API Support Posted: Wed May 14, 2003 11:58 am Subject: Error Code 2039 -- queue not open for output |
Are you also testing the RC after the MQOPEN? Perhaps it is the MQOPEN that is failing once in a blue moon. |
Topic: Having multiple SVRCONN channels.. |
JohnMN
Replies: 3 Views: 3173
|
Forum: General Discussion Posted: Tue May 13, 2003 7:46 am Subject: Having multiple SVRCONN channels.. |
Here's my opinion:
You should be able to have several clients connect to the one channel with no performance issues. Of course, the exact number will vary depending on how many clients you have, ... |
Topic: REBUILD/REFRESH SECURITY |
JohnMN
Replies: 1 Views: 2402
|
Forum: General Discussion Posted: Fri May 09, 2003 10:35 am Subject: REBUILD/REFRESH SECURITY |
Straight from the MQ Command Reference:
REBUILD SECURITY is another synonym for REFRESH SECURITY. |
Topic: MQPUT1 equivalent in Java? |
JohnMN
Replies: 5 Views: 8122
|
Forum: IBM MQ API Support Posted: Thu May 08, 2003 10:10 am Subject: MQPUT1 equivalent in Java? |
MQPUT1(hcon, msg.replyToQMgr, msg.replyToQ, reply)
I would guess differently looking at the above line...
with msg.replyToQMgr and msg.replyToQ, you are just modifying/setting the message heade ... |
Topic: MQPUT1 equivalent in Java? |
JohnMN
Replies: 5 Views: 8122
|
Forum: IBM MQ API Support Posted: Thu May 08, 2003 6:54 am Subject: MQPUT1 equivalent in Java? |
When you issue a reply message, you stay connected to your local queue manager. You can "open" the replyToQ, even if that queue is on another queue manager.
I can explain the process in C termin ... |
Topic: MQGET/MQPUT Timeouts |
JohnMN
Replies: 6 Views: 6745
|
Forum: IBM MQ API Support Posted: Wed May 07, 2003 6:34 am Subject: MQGET/MQPUT Timeouts |
If the message is non-persistent and the network failure occurs (i.e channel goes down) during transit, you will lose the message. The only way to know if the message reached destination is not is to ... |
Topic: Retrying messages due to business requirement |
JohnMN
Replies: 9 Views: 6105
|
Forum: IBM MQ API Support Posted: Tue May 06, 2003 6:35 am Subject: Retrying messages due to business requirement |
The easiest way I can think of offhand is to do the MQGET under a UOW (unit of work). It's perfectly valid, even for a single message.
On the MQGET call, you would need to set MQGMO_SYNCPOINT. ... |
Topic: MQ Client problems |
JohnMN
Replies: 2 Views: 2445
|
Forum: General Discussion Posted: Thu May 01, 2003 6:26 am Subject: MQ Client problems |
Is the "other end" on the same QManager as the sending program? If it's a remote QManager, you may have channels that aren't running. The messages would be in the transmission queue for the channel.
... |
Topic: Client Connections |
JohnMN
Replies: 5 Views: 4085
|
Forum: IBM MQ API Support Posted: Wed Apr 30, 2003 1:59 pm Subject: Client Connections |
I don't know the answer, but if I "think out loud" maybe I can give you a couple of questions that might help. They're not in any particular order -- just a bunch of questions to ask.
We run a z/ ... |
Topic: MQ Series - CPU binding |
JohnMN
Replies: 1 Views: 2138
|
Forum: IBM MQ Installation/Configuration Support Posted: Thu Apr 24, 2003 1:03 pm Subject: MQ Series - CPU binding |
If this can be done, it would be a function of the operating system, not MQ. As such, the answer will vary depending on the platform.
You'll need to look in your operating system documentati ... |
Topic: Monitoring Channels |
JohnMN
Replies: 13 Views: 31744
|
Forum: IBM MQ Performance Monitoring Posted: Thu Mar 27, 2003 11:59 am Subject: Monitoring Channels |
I didn't mean it to sound bleak. It's just that I have never seen an Enterprise-strength Software product that is completely "plug and play". I was merely trying to show that the issues of installatio ... |
Topic: Monitoring Channels |
JohnMN
Replies: 13 Views: 31744
|
Forum: IBM MQ Performance Monitoring Posted: Thu Mar 27, 2003 10:43 am Subject: Monitoring Channels |
But those same activities (plus a few others) will be involved in installing, configuring and evaluating a commercial software product. So, that part of it is pretty much a wash.
Then you have to ... |
Topic: CHANNEL STATISTICS |
JohnMN
Replies: 5 Views: 4335
|
Forum: General IBM MQ Support Posted: Wed Mar 26, 2003 11:42 am Subject: CHANNEL STATISTICS |
Channels are system-wide resources used by all applications that need to communicate with the remote system. They should be started and stopped according to rules set by the system administrators, not ... |
Topic: MQ file transfer |
JohnMN
Replies: 6 Views: 4905
|
Forum: General IBM MQ Support Posted: Wed Mar 26, 2003 8:20 am Subject: MQ file transfer |
Yes, you can use segmented messages, as long as none of the queue managers is z/OS (OS/390, MVS). This will provide some relief.
But I still think MQ is only a small part of the problem. There is ... |
Topic: CHANNEL STATISTICS |
JohnMN
Replies: 5 Views: 4335
|
Forum: General IBM MQ Support Posted: Wed Mar 26, 2003 8:14 am Subject: CHANNEL STATISTICS |
I don't know if the previous post was serious, but DO NOT try to do this by stopping the channel. You will create a lot more problems than you'll solve.
There is no way to reset only the byte co ... |