Author |
Message |
Topic: How to check connection status with C APIs |
koushikt
Replies: 9 Views: 7856
|
Forum: General IBM MQ Support Posted: Thu Jul 30, 2015 3:50 pm Subject: How to check connection status with C APIs |
Thanks everyone. I used the auto reconnect parameter from MQCONNX. I was using MQCONN so far and I never knew about the possibility of passing options. |
Topic: How to check connection status with C APIs |
koushikt
Replies: 9 Views: 7856
|
Forum: General IBM MQ Support Posted: Fri Jul 24, 2015 3:37 pm Subject: How to check connection status with C APIs |
I have a mq listener written in C. I use MQCONN to connect to the Queue Manager and MQGET to listen for messages. But my messages are not that much. So, when my connection gets disconnected often and ... |
Topic: Client Authorization in MQ 7.5 |
koushikt
Replies: 5 Views: 5465
|
Forum: General IBM MQ Support Posted: Wed Feb 25, 2015 1:58 pm Subject: Client Authorization in MQ 7.5 |
I have queue as topic model. My publisher writes to a topic. A bunch of queues are hooked to the topic and I give every client the name of the queue they are supposed to listen on.
I need to make ... |
Topic: Client Authorization in MQ 7.5 |
koushikt
Replies: 5 Views: 5465
|
Forum: General IBM MQ Support Posted: Mon Feb 23, 2015 3:25 pm Subject: Client Authorization in MQ 7.5 |
I have Webshpere application and I post messages to a few topics and queues. How do I prevent any client app which is authorized for the queue manager and has the topic/queue name to read all the mess ... |
Topic: Monitoring for COD or COA |
koushikt
Replies: 11 Views: 17526
|
Forum: IBM MQ API Support Posted: Tue Feb 03, 2015 5:58 pm Subject: Monitoring for COD or COA |
I was initially reading it as a string. Hence the gibberish.
After looping the array and printing an Hex this is what I find
Publisher:
MessageId: 414D5120514D5F53443920202020202054D07AF12007836 ... |
Topic: Monitoring for COD or COA |
koushikt
Replies: 11 Views: 17526
|
Forum: IBM MQ API Support Posted: Tue Feb 03, 2015 4:18 pm Subject: Monitoring for COD or COA |
Ah. Okay I get it.
But anyways, I will have to implement this like a first line of defense when someone complains.
What I found was my report messages CorrelId had garbage value. Even though I set ... |
Topic: Monitoring for COD or COA |
koushikt
Replies: 11 Views: 17526
|
Forum: IBM MQ API Support Posted: Tue Feb 03, 2015 1:10 pm Subject: Monitoring for COD or COA |
I am writing a new publisher which is going to need a confirmation on arrival/delivery of the message. I have the option set up and I also have set the ReplyToQ.
How do I monitor for these Reports? ... |
Topic: Pub/Sub with cluster of machines |
koushikt
Replies: 14 Views: 33665
|
Forum: IBM MQ API Support Posted: Tue Feb 03, 2015 1:06 pm Subject: Pub/Sub with cluster of machines |
I ended up creating a different queue for each app pool and subscribed the queues to the main topic. |
Topic: Pub/Sub with cluster of machines |
koushikt
Replies: 14 Views: 33665
|
Forum: IBM MQ API Support Posted: Wed Jan 28, 2015 6:48 am Subject: Pub/Sub with cluster of machines |
I want every app to receive it. But every app is running multiple instances. I want every app to receive once across all its instances. |
Topic: Pub/Sub with cluster of machines |
koushikt
Replies: 14 Views: 33665
|
Forum: IBM MQ API Support Posted: Wed Jan 28, 2015 6:08 am Subject: Pub/Sub with cluster of machines |
The same app is running multiple instances across the cluster. I just want one instance to get the message and not all.
For example, if I have 10 apps running on a cluster of 4 machines. I want each ... |
Topic: Pub/Sub with cluster of machines |
koushikt
Replies: 14 Views: 33665
|
Forum: IBM MQ API Support Posted: Tue Jan 27, 2015 5:52 pm Subject: Pub/Sub with cluster of machines |
I am building a publisher/subscriber infrastructure with IBM MQ which is going to run on a cluster of machines. I just have one publisher and multiple apps are going to hook to it as a subscriber to ... |
Topic: Multiple MQGETS on the same queue |
koushikt
Replies: 17 Views: 38715
|
Forum: IBM MQ API Support Posted: Tue Jan 27, 2015 5:42 pm Subject: Multiple MQGETS on the same queue |
Thanks a lot. That helps. I think I can figure things out after this. |
Topic: Multiple MQGETS on the same queue |
koushikt
Replies: 17 Views: 38715
|
Forum: IBM MQ API Support Posted: Tue Jan 27, 2015 7:27 am Subject: Multiple MQGETS on the same queue |
Thanks. That actually worked. I added a sleep in my code to verify the behavior.
I couldn't really understand the FastTransferOrder documentation. Is that a property that is set up on the Queue when ... |
Topic: Multiple MQGETS on the same queue |
koushikt
Replies: 17 Views: 38715
|
Forum: IBM MQ API Support Posted: Mon Jan 26, 2015 5:02 pm Subject: Multiple MQGETS on the same queue |
I have a cluster of machines listening to the same queue. I used queue instead of pubsub as the cluster is identical and I don't want the message to be received more than once.
What I noticed is, on ... |