Hi, I try to avoid using third party tools especially when the linux terminal is nice for doing REST. An option that is available if your interested in doing REST with ActiveMQ is Jolokia JMX Api. Here is an example you can run in a Linux command line terminal:
curl -u admin:admin -XGET ' http://localhost:8161/api/jolokia/read/org.apache.activemq:type=Broker,brokerName=localhost,destinationName= TEST,destinationType=Queue' Note: Replace the red with the name of the queue you are interested in accessing. Note: Replace the blue with your *username:password* This will give you details about the queue your interested in working with REST. Cheers, Zak @Prospect1010 <https://twitter.com/prospect1010> " *Before software can be reusable it first has to be usable.* " --Ralph Johnson On Fri, Feb 14, 2014 at 11:37 AM, artnaseef <[email protected]> wrote: > Based on the following page, I recommend using the REST API on port 8161 > and > not using the HTTP transport. The HTTP transport is a built-in media > adapter for clients which can only access the broker via HTTP (due to > network firewalls and the like); it looks like the http transport, then, > should only be used with clients running the activemq client code (i.e. > with > an ActiveMQ connection factory), and even then only when absolutely > necessary. > > http://activemq.apache.org/http-and-https-transports-reference.html > > > > > -- > View this message in context: > http://activemq.2283324.n4.nabble.com/ActiveMQ-CliendID-usage-tp4677943p4677990.html > Sent from the ActiveMQ - Dev mailing list archive at Nabble.com. >
