Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-04-05 Thread Olivier Mallassi
gt; > globalAddressDomains to '/domain/subdomain', and then I register a > > > listener > > > > with JMS for the queue '/domain/subdomain/queueA' I get an > > > > 'amqp-not-found'. > > > > Is this expected? > > > > > > > >

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-04-05 Thread Rob Godfrey
ted? > > > > > > When I told you it worked, I think I had a zombie queue > > > '/domain/subdomain/queueA' from my previous attempt to use '/' in queue > > > names that made it "work" :-(. > > > > > > Thank you, >

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-04-05 Thread Olivier Mallassi
t to use '/' in queue > > names that made it "work" :-(. > > > > Thank you, > > Regards, > > Antoine > > > > -Original Message- > > From: Rob Godfrey [mailto:rob.j.godf...@gmail.com] > > Sent: jeudi 2 mars 2017 16:07 &g

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-04-03 Thread Rob Godfrey
t; Antoine > > -Original Message----- > From: Rob Godfrey [mailto:rob.j.godf...@gmail.com] > Sent: jeudi 2 mars 2017 16:07 > To: users@qpid.apache.org > Subject: Re: Accessing queues with '/' in name in Rest API [qpid java > broker 6.0.4] > > On 2 March

RE: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-31 Thread Antoine Chevin
-(. Thank you, Regards, Antoine -Original Message- From: Rob Godfrey [mailto:rob.j.godf...@gmail.com] Sent: jeudi 2 mars 2017 16:07 To: users@qpid.apache.org Subject: Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4] On 2 March 2017 at 15:11, Antoine C

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-07 Thread Keith W
;)" in queue names. > > Is the plan that all your queues will start with the same //... > prefix, or will different queues have different prefixes? > > -- Rob > > >> Thank you, >> Regards, >> Antoine >> >> -Original Message- >>

RE: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-03 Thread Antoine Chevin
[mailto:rob.j.godf...@gmail.com] Sent: jeudi 2 mars 2017 16:07 To: users@qpid.apache.org Subject: Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4] On 2 March 2017 at 15:11, Antoine Chevin wrote: > Thank you Rob for the very detailed answer. > I

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-02 Thread Rob Godfrey
", ";", ",", "[", "]", "|", "(", and ")" in queue names. Is the plan that all your queues will start with the same //... prefix, or will different queues have different prefixes? -- Rob > Thank you, > Regards, > An

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-02 Thread Antoine Chevin
e lookup. Do you think it is a good approach? Thank you, Regards, Antoine -Original Message- From: Rob Godfrey [mailto:rob.j.godf...@gmail.com] Sent: jeudi 2 mars 2017 11:09 To: users@qpid.apache.org Subject: Re: Accessing queues with '/' in name in Rest API [qpid java brok

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-02 Thread Rob Godfrey
On 2 March 2017 at 10:46, Antoine Chevin wrote: > Thank you Rob for the answer. Yes it really helps! > I noticed that addresses in the form / are also > used with AMQP 1-0. Is it expected? > > It is part of how the Java Broker maps the AMQP 0-x Exchange/Binding/Queue model into the AMQP 1.0 addre

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-02 Thread Antoine Chevin
Thank you Rob for the answer. Yes it really helps! I noticed that addresses in the form / are also used with AMQP 1-0. Is it expected? Thank you, Regards, Antoine On 1 March 2017 at 20:25, Olivier Mallassi wrote: > Rob, all > > Thank you rob for this. Could you please share more details regardi

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-01 Thread Rob Godfrey
On 1 March 2017 at 20:25, Olivier Mallassi wrote: > Rob, all > > Thank you rob for this. Could you please share more details regarding not > using the "/"? > > So there are a couple of reasons why I think not using a / makes sense: 1) Because of exactly the REST / encoding issue that you ran int

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-01 Thread Olivier Mallassi
Rob, all Thank you rob for this. Could you please share more details regarding not using the "/"? On our side we are using amqp 1.0 that, AFAIU, promotes the "complex" addressing plans The benefit for us would be - alignements between our http and amqp naming conventions. It is a nice to have but

Re: Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-01 Thread Rob Godfrey
In general I'd advise against using the '/' character in queue names if possible... however if you must, then you need double encode the name, so "a/b" would become "a%252Fb" Hope this helps, Rob On 1 March 2017 at 17:31, Antoine Chevin wrote: > Hello, > > I created a queue with a '/' in the na

Accessing queues with '/' in name in Rest API [qpid java broker 6.0.4]

2017-03-01 Thread Antoine Chevin
Hello, I created a queue with a '/' in the name. How can I access it in the rest api? I tried to encode the '/' with %2F but I still get a 422 "too many entries in path for REST servlet queue." Can you please help? Regards, Antoine