Reputation: 7280
When there is a network problem which results in the client being disconnected from the JMS server, is there some other way to detect the problem other than waiting until the next JMS message being sent fails?
Upvotes: 4
Views: 1832
Reputation: 13239
ExceptionListener isn't necessarily enough. You also need to catch exceptions on any JMS calls you make (sending messages, for example). See Reconnecting JMS listener to JBossMQ
Upvotes: 3
Reputation: 1007
if your are running on MQ and looking to solve this problem, install a local MQ instance. More license but you will get guaranty delivery if your main corporate MQ goes down.
Other Option, use Spring and let the framework do the recovery of the connection.
Upvotes: 0
Reputation: 403581
You can register an ExceptionListner
with the JMS Connection
using Connection.setExceptionListener(ExceptionListener)
The ExceptionListener
will get notified of more problems than an actual disconnection, so you may have to filter the JMSException
that gets passed to the listener.
Upvotes: 4