Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Looking for experiences others might have had. Or JMS spec citations, if you've got them.

Our typical practice when handling a JMSException (in a try/catch or onException() method) is to fully tear down the existing JMS connection/sessions/... and reinitialize them.

A developer asked if we were being too pessimistic. Are there cases we should treat as temporary that will clear themselves? Or is a full tear-down/reinitialize on a JMSException the best way to go?

I realize this may be somewhat vendor specific. But any wisdom would be welcome.

share|improve this question

1 Answer

Sorry for answering my own question. Despite knowing what the JMS spec says about JMSException, I took one last look and was surprised at what I found in in the chapter on JMSException.

I saw the full list of standardized JMS exceptions under JMSException. And plenty of them look like bad API calls or other things not indicating any trouble requiring tear-down/reinitialization. Like InvalidDestinationException (just guessing, no experience yet).

So it sounds like a bit more fine-grained catching (not just JMSException) would allow us to distinguish conditions requiring reinitialization from not. At least in some cases.

Any further thoughts/experiences would be welcome!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.