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 properties Hashtable I am setting hostname, channel and queuemanager. Now, how can I have auto reconnect functionality in my client application? We have IBM MQ multi-instance queue manager HA configuration.
Basically, I have four end points to which I have to fall back in case of connection failure from my client?