I was experimenting with a TopicSubscriber object today (with ActiveMQ as my message broker and JMS provider). I found that if I initiated a synchronous receive (with a 2 ms timeout) after establishing a connection, that an exception would be thrown if I stopped ActiveMQ in between establishing the connection to it and initiating the first receive. But if I did the connect, then a successful receive, then stopped the broker, and then did a second receive, that instead of having an exception thrown on that receive, I consistently just got a null message back - no indication that the connection to the broker was lost - even after waiting a couple of hours. And then, after restarting ActiveMQ, unless my program closed and reopened its connection to it, none of its receives would work.
I know I can code around this, but I'm wondering if I've missed something as far as knowing how to tell if my connection is lost - please tell me if there's a way, or if this is just a "feature" of ActiveMQ's JMS implementation that I need to code around.