Acknowledgement modes in Java Message Server (JMS)
October 9, 2012 Leave a comment
There are two types – auto-acknowledge – dups-ok-acknowledge
auto-acknowledge: the acknowledge message from MDB to the JMS is sent as soon as the message is received
dups-ok-acknowledge: the acknowledge message from MDB to the JMS can be sent any time later and hence there is chance of JMS sending the message again and MDB should be able to handle the duplicate messages
Recent Comments