Setting Maximum Durable Connection attempts from Client Application
MaxDurableConnectionReconnectAttempts can also be specified from the client application:
In the client application, prior to creating the InitialContext and lookup the ConnectionFactory, add the line below to the code to set the environment property for MaxDurableConnectionReconnectAttempts.
CODE
env.put(Context.PROVIDER_URL, Jndi.PROVIDER_URL);
env.put(Context.INITIAL_CONTEXT_FACTORY, Jndi.INITIAL_CONTEXT_FACTORY);
env.put("BackupConnectURLs", Jndi.BACKUP_CONNECT_URLS);
env.put("MaxDurableConnectionReconnectAttempts", "3"); //Newly added Line