Message Acknowledgement Mode
The JMS message acknowledgement modes are supported as follows:
DUPS_OK_ACKNOWLEDGE is supported using the
Broker's default message acknowledgement.
AUTO_ACKNOWLEDGE is supported using
BrokerClient.acknowledge() to acknowledge the current message received. The call is made by the underlying JMS session implementation.
CLIENT_ACKNOWLEDGE is supported using
BrokerClient.acknowledgeThrough() to acknowledge all the messages received. The method call is made by the JMS client application. In this mode, messages received by all message consumers belonging to the same session will be acknowledged.
Note:webMethods Broker allows for the acknowledgement of individual messages. In JMS, acknowledgement can only be set to all messages received or the last message received.