I have a message-driven EJB deployed to a Glassfish 2.x system. When I get a message that causes an exception or isn't able to be sent or consumed, I would like to do one of the following things:
- Pause the EJB's subscription to the Topic/Queue
- Shut down the EJB itself
- Cease consuming messages until I give an 'all clear' or something equivalent
This is all so that I can stop repeatedly throwing exceptions after calling context.setRollbackOnly() on the message.
I've tried connecting to the server via JMX, but from what I've looked at in documentation says that I'd have to persist:
- username
- password
- jmx url
in my EJB somewhere. Can't I access the JMX server from within the EJB in Glassfish without having to know that?