Hi,
I believe what you're seeing are advisory topics which are automatically
created by default by activemq to send advisory messages to monitor the
behavior of the system (ie. starting of connections, creation of
destinations, etc).
http://activemq.apache.org/advisory-message.html
Btw, you can also disable advisory support by setting it to false in
your broker configuration :
<broker brokerName="localhost" useJmx="true" advisorySupport="false"
.... >
Regards,
Jonas
camper wrote:
I seem to be sending messages to a topic when in fact i'm not creating one.
If I run activemq-admin query, i see my queues that i've created but there
also seems to be a topic created for each queue, that i've created in my
code i never call createTopic, always createQueue. I see the topics
EnqueueCount grow, I have no idea why.
Does anyone know what is going on?