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

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:

  1. Pause the EJB's subscription to the Topic/Queue
  2. Shut down the EJB itself
  3. 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?

share|improve this question
username and password for the JMS Broker? – Preston Oct 28 '12 at 15:30

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.