Author |
Message |
Topic: Distribution Lists: How it works |
dnaren
Replies: 5 Views: 6213
|
Forum: IBM MQ API Support Posted: Sun Oct 10, 2004 10:34 am Subject: Distribution Lists: How it works |
With Distribution lists, there is no way to specify to unique "ReplyToQueue" and "ReplyToQueueManager" for each copy of the message going to different destinations.
If your application is waiting ... |
Topic: when stopping channel, set to INACTIVE |
dnaren
Replies: 2 Views: 3469
|
Forum: IBM MQ API Support Posted: Tue May 25, 2004 8:35 am Subject: when stopping channel, set to INACTIVE |
would you please stop using cell phone text message lingo here?
u != you
wud != would (or wood?)
You are not saving any money here by shortening your messages.  |
Topic: MQ Client Vs MQ Server |
dnaren
Replies: 10 Views: 26678
|
Forum: IBM MQ Java / JMS Posted: Sat Mar 27, 2004 11:41 pm Subject: MQ Client Vs MQ Server |
A single thread in a Client application can connect to multiple queue managers simultaneously.
A thread in a server application cannot connect to more than one queue manager simultaneously. |
Topic: UnsupportedEncodingException cp437 - Fixed. |
dnaren
Replies: 4 Views: 5134
|
Forum: IBM MQ Java / JMS Posted: Sat Mar 27, 2004 11:36 pm Subject: UnsupportedEncodingException cp437 - Fixed. |
Wrong solution.. You shouldn't say "Fixed" in the title.
Going back to Java 1.3 is a not a solution to your problem. I used MQ Java classes that came with MA88 (for MQ 5.2) and MQ 5.3 with Java ... |
Topic: Client Conn |
dnaren
Replies: 6 Views: 5412
|
Forum: IBM MQ Java / JMS Posted: Sat Mar 27, 2004 11:22 pm Subject: Re: Client Conn |
2. If client application wants to make client-connections to qmgrs on number of machines, hows does it get client channel defs of all the qmgrs collectively. If AMQCLCHL.TABs are copied(from all t ... |
Topic: Authorization problem |
dnaren
Replies: 6 Views: 5964
|
Forum: IBM MQ API Support Posted: Tue May 13, 2003 2:20 am Subject: Authorization problem |
Are you using any server connection channel or client connection channel? Is it a sever program or a client program? |
Topic: HCON error |
dnaren
Replies: 12 Views: 17107
|
Forum: IBM MQ API Support Posted: Mon May 12, 2003 6:18 am Subject: HCON error |
You can read an article on using client channel definition table here:
http://www.mqtips.com/webspheremq.asp
This article describes various ways to connect to a mq server from a client using MQ A ... |
Topic: Latest MQMessenger utility |
dnaren
Replies: 0 Views: 2665
|
Forum: IBM MQ Java / JMS Posted: Mon May 12, 2003 6:12 am Subject: Latest MQMessenger utility |
I recently updated the MQMessenger utility and you can download the latest copy from http://www.mqtips.com/images/screen_shot1.jpg
Bug reports are welcome  |
Topic: MQPUT1 equivalent in Java? |
dnaren
Replies: 5 Views: 8109
|
Forum: IBM MQ API Support Posted: Thu May 08, 2003 9:24 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? |
dnaren
Replies: 5 Views: 8109
|
Forum: IBM MQ API Support Posted: Wed May 07, 2003 7:11 pm Subject: MQPUT1 equivalent in Java? |
MQPUT1 is just an encapsulation of three calls OPEN, PUT and CLOSE. It doesn't do anything different when compared to issuing those three calls in sequence. Other than making your code smaller, it ha ... |
Topic: C++ inquire call with ImqQueueManager to get QM name |
dnaren
Replies: 4 Views: 5728
|
Forum: IBM MQ API Support Posted: Tue Mar 11, 2003 9:14 am Subject: C++ inquire call with ImqQueueManager to get QM name |
Oh well, I don't need to (or I can't) call inquire(). It's called automatically and I just need to use name() method on queue manager object after Connect() call is successful.
I am not calling Op ... |
Topic: C++ inquire call with ImqQueueManager to get QM name |
dnaren
Replies: 4 Views: 5728
|
Forum: IBM MQ API Support Posted: Tue Mar 11, 2003 8:29 am Subject: C++ inquire call with ImqQueueManager to get QM name |
I am using a blank string for queue manager name when I connect using the channel definition table file. I don't know the queue manager name at that time. After the Connect call is successful, I want ... |
Topic: C++ inquire call with ImqQueueManager to get QM name |
dnaren
Replies: 4 Views: 5728
|
Forum: IBM MQ API Support Posted: Tue Mar 11, 2003 7:03 am Subject: C++ inquire call with ImqQueueManager to get QM name |
I am trying to get the queue manager name through the inquire() call. The application connects to the queue manager using channel definition table file. I want to get the name of the queue manager aft ... |
Topic: Japanese Client Unable to Connect |
dnaren
Replies: 12 Views: 12112
|
Forum: General IBM MQ Support Posted: Wed Feb 12, 2003 9:52 pm Subject: Japanese Client Unable to Connect |
You are NOT correct.
Java programs connect through "SERVER CONNECTION" channel only. Your java program is not using client connection channel.
 |
Topic: How to Post reply to a queue on another queue manager? |
dnaren
Replies: 6 Views: 7560
|
Forum: IBM MQ API Support Posted: Thu Dec 26, 2002 12:05 pm Subject: How to Post reply to a queue on another queue manager? |
Well, I defined an alias for the remote queue manager (by defining a transmission queue with the name same as that of the remote queue manager M2 and a sender channel). The local queue manager M1 is ... |