Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
915 views

Send to MQ from java always uses default installed mqm userid for IBM MQ version 6.0

Our code runs in weblogic and we MQ 6.0. No matter if I use the default createQueueConnection() or createQueueConnection("myuserid","mypassword") it always seems to use userid mqm. See code below. ...
2
votes
4answers
6k views

IBM MQ Message Listener

Hi does anyone know how to create a message listener using IBM MQ? I know how to do it using the JMS spec but I am not sure how to do it for IBM MQ. Any links or pointers are greatly appreciated.
1
vote
1answer
269 views

How to make multiple instances of RCVR, RQSTR and CLUSRCVR channels in WMQ?

This is a follow up on the question below, but it deserves another question. ...
1
vote
1answer
296 views

Are server-conn and client-conn channels the only channels that could have more than one instances?

I cannot figure out a way to get other channel types, e.g. sender channel, to be multiple instances. There is nothing documented against this. I am assuming only the connection channels could have ...
0
votes
1answer
250 views

Reusing IBM.WMQ.MQQueue object

We are using the .NET API to IBM's WebSphere MQ. Creating the MQQueueManager object is clearly an expensive operation, and so we cache and reuse a pool of these objects. Currently, for each ...