You are right. I am seeing the advisory topics. I don't understand why I it accumulates many: ActiveMQ.Advisory.Producer.Queue. what does it mean?
I am doing the following to send messages from the producer: ActiveMQConnectionFactory queueConnectionFactory = new ActiveMQConnectionFactory(QUEUE_CONNECION_FACTORY); queueConnection = queueConnectionFactory.createQueueConnection(); queueConnection.start(); queueSessionSend = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE); queueSessionReceive = queueConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE); destinationSendClient = queueSessionSend.createQueue(USER_QUEUE_NAME); queueSender = queueSessionSend.createSender((Queue)destinationSendClient); ...create temp queues for destination... listen to messages queueSender.send(objMsg); I create the sessions and queueConnections once and close them at the stop of application and i delete the temp quese after process of responses Can this explain the problem of accumulation?? Thanks, Michal Michal Singer wrote: > > I use activemq 5.0 broker embedded in spring. > When i observe a jconsole, i see the queues and temporary queues in a > correct list, but i also see > the queus in the topics list accumulate there. > They are not topics so there is no reason for this. > > does any one knows what this means? why are they accumulated there, is > that a problem in jconsole > or is it a problem with activemq? > > -- View this message in context: http://www.nabble.com/Jconsole-accumulates-a-list-of-topics-when-i-only-create-queues-tp15950833s2354p15975399.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.