Re: Copy Message From ActiveMQ topic to ActiveMQ queue

2018-11-06 Thread Tim Bain
That's because it's a configuration-time setting done via activemq.xml rather than a runtime configuration done via the web console. An example is in the "Customizing the out-of-the-box defaults" section of the page you linked to. Tim On Sun, Nov 4, 2018, 5:05 PM ravi999 Is there any video\blog

Re: Copy Message From ActiveMQ topic to ActiveMQ queue

2018-11-04 Thread ravi999
Is there any video\blog listing the steps to create virtual topic\destinations? I have gone through below link and the activemq UI, I didn't find a way to create virtual topic\destinations http://activemq.apache.org/virtual-destinations.html -- Sent from: http://activemq.2283324.n4.nabble.com/

Re: Copy Message From ActiveMQ topic to ActiveMQ queue

2018-11-03 Thread Tim Bain
Yes, make your subscription durable, so that it will remain even while the subscriber is disconnected. The mechanism for doing that will probably depend on your ETL framework. Just make sure you unsubscribe when you're done using the subscription, to avoid accumulating messages you'll never consum

Re: Copy Message From ActiveMQ topic to ActiveMQ queue

2018-11-03 Thread ravi999
We are actually subscribing to a ActiveMQ topic using ETL Tool. After running for 15-20 days, the job is failing with jms exceptions or due to server issues. In that cases any messages broadcasted by the ActiveMQ topic when the consumer is not active are lost. Is there any way to retain the message

Re: Copy Message From ActiveMQ topic to ActiveMQ queue

2018-11-01 Thread Tim Bain
No, in the most general case, that's not possible without writing code in some language (Java, Camel, etc.). But you can use an embedded Camel route within the broker process, if you wanted the code to run in the broker instead of on an external runtime. Alternatively, depending on your use case,