Author |
Message |
Topic: AccessQueue() options |
V&G
Replies: 6 Views: 13052
|
Forum: IBM MQ API Support Posted: Mon Mar 27, 2006 5:38 am Subject: AccessQueue() options |
Thanks a lot to all taken a part. |
Topic: AccessQueue() options |
V&G
Replies: 6 Views: 13052
|
Forum: IBM MQ API Support Posted: Sun Mar 26, 2006 9:48 pm Subject: AccessQueue() options |
In other words I can open queue on other qmgr for OUTPUT only, is it right? |
Topic: AccessQueue() options |
V&G
Replies: 6 Views: 13052
|
Forum: IBM MQ API Support Posted: Sun Mar 26, 2006 7:40 am Subject: AccessQueue() options |
Is it mean that in order to get queue definition on other qmgr I need to connect to it firstly?
I guess it's not a case otherwise I don't understand the sense of replyToQMng parameter...
Can you g ... |
Topic: AccessQueue() options |
V&G
Replies: 6 Views: 13052
|
Forum: IBM MQ API Support Posted: Sun Mar 26, 2006 6:20 am Subject: AccessQueue() options |
Hello all,
I'm trying to read queue content on remote MQ manager using .NET API..
The scenario is:
- to write the message to remote queue "aR" on manager "A". As a parameters of message I spec ... |
Topic: How to retrieve channel status |
V&G
Replies: 10 Views: 8767
|
Forum: IBM MQ API Support Posted: Tue Nov 01, 2005 10:15 pm Subject: How to retrieve channel status |
I think now it's clear for me ....
When I use MQCMD_INQUIRE_CHANNEL_STATUS, I get the list of all channels that have SOME status other then MQCHS_INACTIVE.
The thought being that you might n ... |
Topic: How to retrieve channel status |
V&G
Replies: 10 Views: 8767
|
Forum: IBM MQ API Support Posted: Mon Oct 31, 2005 12:13 am Subject: How to retrieve channel status |
I have created a channel "SomeChannel".
Stoped it.
Started it.
Used it to send and receive some messages.
but...
the code
PCFMessage pcfMsg = new PCFMessage(CMQCFC.MQCMD_INQUIRE_CHANNE ... |
Topic: Versions of MQSeries API |
V&G
Replies: 16 Views: 33273
|
Forum: IBM MQ API Support Posted: Thu Oct 27, 2005 4:56 am Subject: Versions of MQSeries API |
Translation - it's not a problem despite of in amqmdnet library some methods you are using are protected and not accessable.
(See my previous post)
From here it's clear that there is no versioni ... |
Topic: Versions of MQSeries API |
V&G
Replies: 16 Views: 33273
|
Forum: IBM MQ API Support Posted: Thu Oct 27, 2005 4:44 am Subject: Versions of MQSeries API |
This way it work for me too but I think we lost it
I did not need to get the type of the channel. I need to get channel's status.
I'm using C# and amqmdnet.dll
The difference was I used MQ ... |
Topic: Versions of MQSeries API |
V&G
Replies: 16 Views: 33273
|
Forum: IBM MQ API Support Posted: Thu Oct 27, 2005 1:55 am Subject: Versions of MQSeries API |
Here is my code:
PCFMessage pcfMsg = new PCFMessage(CMQCFC.MQCMD_INQUIRE_CHANNEL_STATUS);
pcfMsg.AddParameter(new MQCFST(CMQCFC.MQCACH_CHANNEL_NAME, channelName));
pcfMsg. ... |
Topic: Versions of MQSeries API |
V&G
Replies: 16 Views: 33273
|
Forum: IBM MQ API Support Posted: Sat Oct 22, 2005 10:28 pm Subject: Versions of MQSeries API |
wschutz
jefflowrey
I'm confused little bit, because now we are spoken about the same things in two different threads: here and in "How to retrieve channel status"...
Ok, lets suspend the other one ... |
Topic: Versions of MQSeries API |
V&G
Replies: 16 Views: 33273
|
Forum: IBM MQ API Support Posted: Thu Oct 20, 2005 7:58 am Subject: Versions of MQSeries API |
wschutz
Ok, there is no definitions for constants. I have tryed to use numbers instead. But I have exception on execution step (from Send() function). So,as I understand, it is an exception from the ... |
Topic: How to retrieve channel status |
V&G
Replies: 10 Views: 8767
|
Forum: IBM MQ API Support Posted: Thu Oct 20, 2005 7:53 am Subject: How to retrieve channel status |
Did you mean something like this:?
pcfMsg.AddParameter(new MQCFIL(CMQCFC.MQIACH_CHANNEL_INSTANCE_ATTRS,
new int[] { CMQCFC.MQIACH_CHANNEL_INSTANCE_TYPE } ));
If so, it's does not matter - the ... |
Topic: Versions of MQSeries API |
V&G
Replies: 16 Views: 33273
|
Forum: IBM MQ API Support Posted: Thu Oct 20, 2005 7:34 am Subject: Versions of MQSeries API |
I'm browsing IBM's online MQ 6.0 infocenter and seeing some interesting commands like MQCMD_INQUIRE_CLUSTER_Q_MGR and MQCMD_INQUIRE_Q_MGR_STATUS. But when I tried to use them I got exception about inv ... |
Topic: How to retrieve channel status |
V&G
Replies: 10 Views: 8767
|
Forum: IBM MQ API Support Posted: Thu Oct 20, 2005 7:19 am Subject: How to retrieve channel status |
I have got an array of all channels and need to know what what's statuses of them.
PCFMessage pcfMsg = new PCFMessage(CMQCFC.MQCMD_INQUIRE_CHANNEL_STATUS);
pcfMsg.AddParameter(new MQCFST(CMQCFC.MQ ... |