Re: ActiveMQ whitelisting the IP address & REST API documentation Queries

2023-07-26 Thread Justin Bertram
Check the getQueues() [1] and getTopics() [2] operations. Those will give you a list of all the queues and topics respectively. Justin [1] https://activemq.apache.org/maven/apidocs/org/apache/activemq/broker/jmx/BrokerViewMBean.html#getQueues() [2] https://activemq.apache.org/maven/apidocs/org/a

Re: ActiveMQ whitelisting the IP address & REST API documentation Queries

2023-07-26 Thread Pavan Gujjari
Hi Justin, I am writing to express my sincere gratitude for your prompt and helpful response to my recent, and I would like to add one more question regarding the REST API . - Is there any endpoint that gets a specific queue/topic that in response we get th

Re: ActiveMQ whitelisting the IP address & REST API documentation Queries

2023-07-24 Thread Justin Bertram
If you want to remove a queue or a topic then you can use the management API which is based on JMX [1] but is also exposed via HTTP [2]. In particular, you can use the removeQueue [3] and removeTopic [4] operations. Publishing & subscribing to a topic is the same as for a queue, you just use "topi

Re: ActiveMQ whitelisting the IP address & REST API documentation Queries

2023-07-24 Thread Pavan Gujjari
Hi Justin, I truly appreciate the time and effort you took to address my concerns. Yes, We'd like to know whether we have any endpoints that fit the following use case: - Delete a Queue or Topic - Subscribe to a topic - Publish to a topic If yes, please let us know the documentation of

Re: ActiveMQ whitelisting the IP address & REST API documentation Queries

2023-07-24 Thread Justin Bertram
I'm not clear on what you mean by, "...it was blacklisted while utilizing the localhost..." Can you clarify this? Do you just mean that when the broker was listening on localhost that remote clients were not able to connect? To my knowledge, there is no specific feature to whitelist or blacklist I

ActiveMQ whitelisting the IP address & REST API documentation Queries

2023-07-24 Thread Pavan Gujjari
Hello ActiveMQ Team, I am writing to inquire about a few questions that are mentioned below. 1. Does ActiveMQ whitelist the IP address because it was blacklisted while utilizing the localhost that we set up per the documentation