Author |
Message |
Topic: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
HrothgarV
Replies: 8 Views: 5218
|
Forum: General IBM MQ Support Posted: Fri Aug 01, 2003 11:46 am Subject: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
i find it odd that you were able to interchange the MQAX MQQueueManager object and the mqExecute(HConn) in Javascript. They are of 2 different data types. I also do a little javascript/vbscript prog ... |
Topic: MQAX.MQQueueManager.ConnectionHandle |
HrothgarV
Replies: 4 Views: 2893
|
Forum: IBM MQ API Support Posted: Fri Aug 01, 2003 11:30 am Subject: MQAX.MQQueueManager.ConnectionHandle |
does not work...
see General Support forum, topic: MQAX.QMgr.ConnectionHandle... |
Topic: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
HrothgarV
Replies: 8 Views: 5218
|
Forum: General IBM MQ Support Posted: Fri Aug 01, 2003 11:27 am Subject: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
WAIT.... something's wrong here...
MQAX MQSession.AccessQueueManager returns a queue manager object of type MQQueueManager.
set gbl_qMgr = gbl_MQSess.AccessQueueManager(gbl_qMgrName);
gbl_qM ... |
Topic: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
HrothgarV
Replies: 8 Views: 5218
|
Forum: General IBM MQ Support Posted: Fri Aug 01, 2003 11:15 am Subject: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
will try ... |
Topic: MQAX.MQQueueManager.ConnectionHandle |
HrothgarV
Replies: 4 Views: 2893
|
Forum: IBM MQ API Support Posted: Fri Aug 01, 2003 9:14 am Subject: MQAX.MQQueueManager.ConnectionHandle |
any help?
I've actually tried using the MQAX qmgr.ConnectionHandle and MQAX qmgr.ObjectHandle to run mqExecute(HConn, parm,parm,,,). Neither one worked. I had to issue a separate connection via M ... |
Topic: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
HrothgarV
Replies: 8 Views: 5218
|
Forum: General IBM MQ Support Posted: Fri Aug 01, 2003 9:10 am Subject: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
the problem is the connection handle needed by the mqExecute command. Neither the qmgr.ConnectionHandle nor the qmgr.ObjectHandle work when I used in the mqExecute command. Only when I issued a sepa ... |
Topic: MQAX.MQQueueManager.ConnectionHandle |
HrothgarV
Replies: 4 Views: 2893
|
Forum: IBM MQ API Support Posted: Tue Jul 29, 2003 12:26 pm Subject: MQAX.MQQueueManager.ConnectionHandle |
the MQAI mqExecute command needs a connection handle. I have already established connection to the queue manager via MQAX MQSession and MQQueueManager objects. I don't want to establish another conn ... |
Topic: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
HrothgarV
Replies: 8 Views: 5218
|
Forum: General IBM MQ Support Posted: Tue Jul 29, 2003 8:07 am Subject: MQAX.QMgr.ConnectionHandle not the same as MQCONN.HConn |
Hi,
I am developing an app that would monitor the queues and channels of mqseries. I am using both the MQAX and MQAI components of mqseries. I initially setup my session and connected to the queu ... |
Topic: MQAX200 without MQServer Env. Variable |
HrothgarV
Replies: 1 Views: 2059
|
Forum: General IBM MQ Support Posted: Tue Jul 29, 2003 7:54 am Subject: MQAX200 without MQServer Env. Variable |
use the MQCHLLIB and MQCHLTAB env vars and you would be able to connect (even simultaneously) to different queue managers. |
Topic: Channel keep running |
HrothgarV
Replies: 6 Views: 4600
|
Forum: IBM MQ Installation/Configuration Support Posted: Mon Apr 28, 2003 7:12 am Subject: Channel keep running |
the 'typical' setup is to always have the channel initiator (like the listener) running as long as the qmgr is running (to have a real-time communication with the other party). consider these 2 (the ... |
Topic: Queue Full Problem... |
HrothgarV
Replies: 6 Views: 5147
|
Forum: General Discussion Posted: Fri Apr 25, 2003 9:26 am Subject: Queue Full Problem... |
also, if you control the application putting messages to the queue, the application would be able to determine when the queue becomes full. you can then put the logic to send an email from the applic ... |
Topic: Channel keep running |
HrothgarV
Replies: 6 Views: 4600
|
Forum: IBM MQ Installation/Configuration Support Posted: Fri Apr 25, 2003 6:30 am Subject: Re: Channel keep running |
[quote="gobi_nathan"]Hi All ,
1) How to make my channel keeps running.We are using request/repsponse deign.If I don't want to stop the sender and receiver channel even after the timeout.How to mak ... |
Topic: When to use message ID and when to use correlation ID |
HrothgarV
Replies: 3 Views: 3077
|
Forum: General Discussion Posted: Thu Apr 24, 2003 6:48 am Subject: When to use message ID and when to use correlation ID |
you may use the msgid as a unique identifier for each message you send to another party. then the other party may then populate the correlid with your original msgid when replying. this example ensu ... |
Topic: Using VC++ compiler with MQSeries |
HrothgarV
Replies: 2 Views: 2145
|
Forum: IBM MQ API Support Posted: Thu Apr 24, 2003 6:37 am Subject: Using VC++ compiler with MQSeries |
i don't think the executable you've created when you compiled your code in windows will run in a unix environment...
to play safe, make your code ansi-c compliant, compile and test it in windows, c ... |
Topic: Dead letter queues |
HrothgarV
Replies: 13 Views: 13231
|
Forum: General IBM MQ Support Posted: Thu Apr 24, 2003 6:30 am Subject: Dead letter queues |
[quote]
[color=red]
- If you are putting the messages to a remote queue, AND if a dead letter queue is defined on the remote queue manager, then when the queue becomes full the queue manager will a ... |