Re: Topic Advisories pile up in ActiveMQ

2013-12-12 Thread javaG
Thanks for reply. Yes all messages on temp-queues are consumed by the stomp client. After stomp client receives the message on temp-queue it unsubscribes from it. Also I use non-persistent messaging. -- View this message in context: http://activemq.2283324.n4.nabble.com/Topic-Advisories-pile-u

Re: Topic Advisories pile up in ActiveMQ

2013-12-11 Thread javaG
Thank you for your post. I tried these settings in activemq.xml and restarted everything but it did not make any difference. -- View this message in context: http://activemq.2283324.n4.nabble.com/Topic-Advisories-pile-up-in-ActiveMQ-tp4675430p4675432.html Sent from the ActiveMQ - User mailing l

Topic Advisories pile up in ActiveMQ

2013-12-11 Thread javaG
I have a stomp client that uses temp queue as reply back destination ('/temp-queue/'+uuid_generated_value) to which I subscribe in stomp client and then send a message on a fixed queue in which I set the reply-to header to ('/temp-queue/'+uuid_generated_value). JMS consumer in Java for the fixed

Re: ActiveMQ fails to deliver message to Stomp consumer

2013-12-09 Thread javaG
It turned out to be a bug in the stomp client I was using (stompjs for nodejs). When I switched to another nodejs stomp client ( stomp-client for nodejs), it worked fine. Using stompjs client cost me 5 days of extra time. -- View this message in context: http://activemq.2283324.n4.nabble.com

ActiveMQ fails to deliver message to Stomp consumer

2013-12-08 Thread javaG
I am using NodeJs stomp client to do messaging between stomp client and JMS client. While Stomp producer successfully sends message to JMS consumer but the reverse is not working. While JMS producer successfully sends the message to the destination on which Stomp consumer is subscribed to, but Sto

Re: Stomp reply-to header get altered to temporary queue by ActiveMQ in STOMP to JMS messaging

2013-12-06 Thread javaG
Any solution to this problem ? -- View this message in context: http://activemq.2283324.n4.nabble.com/Stomp-reply-to-header-get-altered-to-temporary-queue-by-ActiveMQ-in-STOMP-to-JMS-messaging-tp4675061p4675256.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Stomp reply-to header get altered to temporary queue by ActiveMQ in STOMP to JMS messaging

2013-12-04 Thread javaG
Camel route is simple and this is what I have: -- View this message in context: http://activemq.2283324.n4.nabble.com/Stomp-reply-to-header-g

Re: Stomp reply-to header get altered to temporary queue by ActiveMQ in STOMP to JMS messaging

2013-12-04 Thread javaG
I changed the order and now I am subscribe to the reply queue before sending message but unfortunately this did not make a difference. ActiveMQ again translate reply-to to something else that looks like: DEBUG | Using JMSReplyTo destination: temp-queue://ID:hostname-54680-1386185007293-3:3:1 | or

Stomp reply-to header get altered to temporary queue by ActiveMQ in STOMP to JMS messaging

2013-12-03 Thread javaG
I have STOMP producer in which I set reply-to header to something like /queue/yu8899-90yuhh-89nuinnk ( the last part is uuid generated unique value). After doing SEND in Stomp I subscribe to this reply-to queue but I have never any message on this reply-to. I found the reason is that ActiveMQ JMS

Strange problem in activeMQ or Camel resulting in wrong message type

2013-10-22 Thread javaG
There is a strange problem either in activemq or camel which breaks everything when it happens. This problem cannot be reproduced but happens randomly once in a while. What happens is that in a request/reply pattern, the reply is of type ActiveMQMessage instead of the expected ActiveMQObjectMess

Re: Too many advisories topics created in ActiveMQ

2013-10-11 Thread javaG
Thank you all for the replies. I had looked at so many options and even came across lingo which is abandon-ware now. In my case it is volume based (lots and lots of messages) and not size based and no database transactions involved and I use non-persistent messaging. My application which sends m

Too many advisories topics created in ActiveMQ

2013-10-09 Thread javaG
In my application, I use request-reply by creating temp queue and creating a new replyConsumer for each message to use replyConsumer.poll() method to get reply back. After getting reply I close the replyConsumer. Messaging works fine but each time a message is sent a topic ActiveMQ.Advisory.Consum

where to set idleTimeout in activemq ?

2013-10-07 Thread javaG
I am facing the issue of activemq throwing exception when a message sent is after some inactivity: Setup of JMS message listener invoker failed for destination 'temporary' - trying to recover. A workaround was suggested: disable idle timeout in PooledConnectionFactory which can be done by se

activemq failed to delete temporary queue

2013-10-03 Thread javaG
In my client I use single temporary queue to get reply from consumers using request reply pattern. I use the same temporary queue to get reply for different kind of messages that are routed to other queues ( routing is done with camel.xml under activemq) where consumers send the response back. On

Re: Getting ActiveMQObjectMessage instead of TextMessage

2013-09-30 Thread javaG
Any solution or suggestion to this problem? -- View this message in context: http://activemq.2283324.n4.nabble.com/Getting-ActiveMQObjectMessage-instead-of-TextMessage-tp4671877p4671977.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: suggestion/feature request: prompt before allowing a purge/delete from the UI

2013-09-29 Thread javaG
Does hawtio plugin for activemq work for activemq 5.8 ? -- View this message in context: http://activemq.2283324.n4.nabble.com/suggestion-feature-request-prompt-before-allowing-a-purge-delete-from-the-UI-tp4671925p4671956.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Getting ActiveMQObjectMessage instead of TextMessage

2013-09-27 Thread javaG
a message foo's reply was of unexpected type ActiveMQObjectMessage but foo's actual response showed up in bar's message. So something really is messed up. On Thu, Sep 26, 2013 at 9:35 PM, javaG <zenmatix@> wrote: > I have a consumer client and producer client. Producer cl

Getting ActiveMQObjectMessage instead of TextMessage

2013-09-26 Thread javaG
I have a consumer client and producer client. Producer client sends message to producer client via a queue and using request/reply message pattern. So producer is blocked until a reply comes back from consumer. Most of the times it works fine and I get javax.jms.TextMessage type message but occasio

Re: Issue with deploying war file in activemq embedded jetty

2013-08-29 Thread javaG
I use the same jetty.xml that comes with activemq 5.8.0. I only added an entry for my app called foo. I copy foo.war to webapps under activemq but nothing happens, no logs either. It is not deployed. Hope some one know the solution already before I spend more time on this. Here is my jetty.xml:

Issue with deploying war file in activemq embedded jetty

2013-08-26 Thread javaG
I copied war to webapps folder under activemq and restarted activemq but it did not deploy the app. ActiveMQ web console app works fine. I then edited jetty.xml to make an entry for my web app the same way as the admin app and restarted activemq but it still did not deploy it. Is there anything els

deploy war in jetty problem

2013-08-26 Thread javaG
I copied war to webapps folder under activemq and restarted activemq but it did not deploy the app. ActiveMQ web console app works fine. I then edited jetty.xml to make an entry for my web app the same way as the admin app and restarted activemq but it still did not deploy it. Is there anything

issue with deploying war file in activemq embedded jetty.

2013-08-25 Thread javaG
I copied war to webapps folder under activemq and restarted activemq but it did not deploy the app. ActiveMQ web console app works fine. I then edited jetty.xml to make an entry for my web app the same way as the admin app and restarted activemq but it still did not deploy it. Is there anything