Does JMS support message acknowledgment?
Location: http://www.jguru.com/faq/view.jsp?EID=1164 Created: Nov 19, 1999 Author: Jerry Smith (http://www.jguru.com/guru/viewbio.jsp?EID=9) Yes. With transacted sessions, acknowledgment is handled automatically by the session’s commit(). With sessions that are not transacted, there are three options for message acknowledgment: • DUPS_OK_ACKNOWLEDGE • AUTO_ACKNOWLEDGE • CLIENT_ACKNOWLEDGE See the JMS API documentation, in particular, the description for Session, for complete message acknowledgment information.