When I was testing Ajax with the ActiveMQ,
I found out that all queue destinations were mistakenly processed.
for example
if a queue destination is "queue://hc.upmesg",
when this one is registered in ActiveMQ, it is displayed like
queue_hc.upmesg
So I inserted the below code into
org.apache.activemq.web.MessageServletSupport.getDestination Method
else if (destinationName.startsWith("queue://"))
{
is_topic = false;
destinationName = destinationName.subscribe(8);
}
since then everything is all right.
Be happy.
--
View this message in context:
http://www.nabble.com/On-Ajax-testing%2C-All-queue-destinations-is-differently-interpreted-tf3044016.html#a8461828
Sent from the ActiveMQ - User mailing list archive at Nabble.com.