Re: Embedding REST

2016-04-29 Thread Justin Bertram
I recommend you put the documentation in the existing chapter on REST [1]. Justin [1] https://github.com/apache/activemq-artemis/blob/master/docs/user-manual/en/rest.md - Original Message - From: "Julien d" To: dev@activemq.apache.org Sent: Friday, April 29, 2016

Re: Embedding REST

2016-04-29 Thread Julien d
Thank you Justin. Where do you think it would be best to document embedding REST once I am more familiar with it? Regards, Julien D. Alternative email address : julie...@protonmail.ch On 04/29/2016 05:59 PM, Justin Bertram wrote: > You need to connect to the embedded HTTP server which, by

[GitHub] activemq-artemis pull request: ARTEMIS-510 create queue only on ro...

2016-04-29 Thread jbertram
GitHub user jbertram opened a pull request: https://github.com/apache/activemq-artemis/pull/498 ARTEMIS-510 create queue only on route You can merge this pull request into a Git repository by running: $ git pull https://github.com/jbertram/activemq-artemis ARTEMIS-510

[GitHub] activemq-artemis pull request: Change keep alive ratio to 1.5 from...

2016-04-29 Thread incarosegit
GitHub user incarosegit opened a pull request: https://github.com/apache/activemq-artemis/pull/497 Change keep alive ratio to 1.5 from 0.75 Fixes: ARTEMIS-397 From mqtt specs: “If the Keep Alive value is non-zero and the Server does not receive a Control

Proposed Enhancement - add option to have Composite Destinations set the originalDestination header

2016-04-29 Thread Quinn Stevenson
I use Composite Destinations as wiretaps for an auditing system and it would be very helpful if the forwarded message had the original destination name on it. I’ve found where I can make the additions for this to work, but I don’t know what I need to change to add an attribute to the

Re: [VOTE] Apache ActiveMQ 5.13.3 #2

2016-04-29 Thread Dejan Bosanac
+1 Regards -- Dejan Bosanac about.me/dejanb On Thu, Apr 28, 2016 at 9:03 PM, Matt Pavlovich wrote: > +1 > > Compiled and spot checked tests on OSX > > > On 4/28/16 8:16 AM, Christopher Shannon wrote: > >> I have merged in the fix for the failing test and re-cut the release.

Re: Embedding REST

2016-04-29 Thread Justin Bertram
You're attempting to connect to the port 61616 which is not for REST clients. You need to connect to the embedded HTTP server which, by default, listens on 8081. Justin - Original Message - From: "Julien d" To: dev@activemq.apache.org Sent: Friday, April 29, 2016

Embedding REST

2016-04-29 Thread Julien d
Hello, After trying Justin's example [1]. I cannot get any reply from the embedded REST server. curl -I http://localhost:61616/queues/jms.queue.orders -> the command hangs. And same goes with the REST example then. What could be wrong with the embedded server? Thank you for your patience, I am