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

All, In my test scenario, I have openJMS in a suspended state (deliberately). The problem is that the application accessing it keeps spawning new threads which remain in a "blocked" state even though I am using Future/Callable with a timeout. I can see that a timeout happens, but that thread still remains in a blocked state.

The culprit is this single line: initContext = new InitialContext(env);

I have that wrapped in a try/catch/finally and in finally I check if initContext != null and the close it. Problem is that its not null because its hung and times out. Eventually I can see many threads being spawned and in blocked state.

Any idea on how to tackle this? Thanks in advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.