Is it possible to turn off message acknowledgment if it is not important for a particular communication scenario?
Location: http://www.jguru.com/faq/view.jsp?EID=1308 Created: Nov 28, 1999 Author: Jerry Smith (http://www.jguru.com/guru/viewbio.jsp?EID=9) Sort of. In this situation, in general, you can improve throughput by setting the acknowledgment mode to permit duplicates, that is, by allowing the JMS server to avoid the overhead of the once-and-only-once guarantee: … topicCon.createTopicSession(false, DUPS_OK_ACKNOWLEDGE); …