Re: Consumer acknowledgement with REST API for ActiveMQ

2018-04-23 Thread Tim Bain
In ActiveMQ 5.x, REST sessions are hard-coded to AUTO_ACKNOWLEDGE. See the following code from org.apache.activemq.web.WebClient.java: protected Session createSession() throws JMSException { return getConnection().createSession(false, Session.AUTO_ACKNOWLEDGE); } Tim On Fri, Apr

Consumer acknowledgement with REST API for ActiveMQ

2018-04-20 Thread n999999
Hello I was looking at the REST API for ActiveMQ at http://activemq.apache.org/rest.html. I was wanting to use REST with the option for Consumer acknowledgement but this page doesn't mention it. Looking at http://activemq.apache.org/rest-protocols.html it does mention that "If you want to ackno