I am using embedded Activemq broker (5.3 Version), Flex client and STOMP protocol for the communication.
Below is the xml configuration we use <beans xmlns="http://www.springframework.org/schema/beans" xmlns:amq="http://activemq.apache.org/schema/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd"> <!-- The <broker> element is used to configure the ActiveMQ broker. --> <broker xmlns="http://activemq.apache.org/schema/core" persistent="false" useJmx="true" brokerName="PRI" > <transportConnectors> <transportConnector name="Stomp" uri="stomp://0.0.0.0:8084"/> <transportConnector name="Nio" uri="nio://0.0.0.0:8086"/> <transportConnector name="Tcp" uri="tcp://0.0.0.0:8087"/> </transportConnectors> </broker> </beans> We use NON-PERSISTENT messages and send it to topic. In Jconsole Broker attributes, i see TotalDequeueCount is very less compared to ToatlEnqueueCount and TotalMessageCount. But my client is able to get all the messages without fail. Am i missing any configuration? Kindly help me out. -- View this message in context: http://old.nabble.com/Activemq-Broker-attribute-TotalDequeueCount-is-very-small-tp26315275p26315275.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.