Re: How to get list of queues in topic address

2022-10-26 Thread Thai Le
Thank you Justin On Wed, 26 Oct 2022 at 01:37, Justin Bertram wrote: > Use the "getQueueNames" method on the address control [1], e.g.: > > try (ServerLocator locator = > ActiveMQClient.createServerLocator("vm://0"); >ClientSessionFactory factory = locator.createSessionFactory(

Re: How to get list of queues in topic address

2022-10-25 Thread Justin Bertram
Use the "getQueueNames" method on the address control [1], e.g.: try (ServerLocator locator = ActiveMQClient.createServerLocator("vm://0"); ClientSessionFactory factory = locator.createSessionFactory(); ClientSession session = factory.createSession(false, true, true)) {

How to get list of queues in topic address

2022-10-25 Thread Thai Le
Hello, I am using ActiveMQClient to talk to the artemis broker. I am trying to move all the messages in a topic to another topic programmatically. The only pieces of info I have is the broker URL, username, password and the topic name (the address). However, since there are quite a number of subscr