I am writing a C # client that connects to IBM Websphere MQ Manager using amqmdnet.dll using the following construct:
_myQueueManager = new MQQueueManager(queueManagerName, properties);
In the Hashtable properties, I set the host name, channel, and queuemanager. Now, how can I use the auto-reconnect feature in my client application? We have a multi-instance IBM MQ instance queue manager HA configuration.
Basically, do I have four endpoints to which I should step back in case of a connection failure from my client?
source
share