Pausing Message Delivery in JBoss 

In my previous post I described how to pause message delivery in WebSphere. Today I am going to show how to pause message delivery in JBoss. The technique is the same. Obtain MBean that control’s a Queue or Topic and invoke methods on it. Alternatively in JBoss you can go to JMX Console: Go to [...]

Pausing message delivery in WebSphere 

The advantage of using JMS Queues or Topics is that messages can be processed asynchronously. Sometimes you need to pause the processing temporarily. Say for example, your messages write data to a database but the database is shutdown in the evenings. What do you do with the messages in the Queue or Topic? The JMS [...]