Re: Browsing the whole LVQ

2018-01-31 Thread Daniel Gavrila
Hi Gordon, Thanks for your answer.I think I can manage this, but it would be really nice if you can write a sample. I‘ve noticed that in proton 0.20 you‘ve added the sample colour_send.cpp for the filtering. I think it would be useful for everyone if the samples are organized after use case

Re: ***UNCHECKED*** Re: trouble connecting to Azure Service Bus from OS X

2018-01-31 Thread George David
I didn't get any further. In the end, I just used the python docker image and mounted my working directory so I can test the code. I changed it to ANONYMOUS and I ran into the same error, though to be frank, I don't really understand the difference. Do I need to make any more changes to test

Re: Browsing the whole LVQ

2018-01-31 Thread Gordon Sim
On 26/01/18 08:20, Gavrila, Daniel wrote: Hello, I'm using Qpid Proton C++ v0.19 I would like to browse the whole LVQ like in the sample from paragraph 1.6.3.2 https://qpid.apache.org/releases/qpid-cpp-1.37.0/cpp-broker/book/ch01s06.html How can I detect that there are no more

Re: Link handling after detach(close=false)

2018-01-31 Thread Gordon Sim
On 31/01/18 15:47, Hudalla Kai (INST/ECS4) wrote: The consumer is currently simply opening a receiver link (attach with no specific capabilities nor options) to the router, which then opens a link to the broker, I assume. In which case the distinction between close=true and close=false is

Re: [Proton-J] Create exchange / queues and bind them using proton-j library

2018-01-31 Thread dexter
Yes, I'm using Broker-J 7.0.0. Thank you for pointing me the nodeAutoCreationPolicies and AMQP Management protocol. I tried nodeAutoCreationPolicies, it works but it's not flexible and it depends on the broker specific condifguration. AMQP Management protocol looks better, even if it's just a

Re: Link handling after detach(close=false)

2018-01-31 Thread Hudalla Kai (INST/ECS4)
On 30.01.2018 13:48, Gordon Sim wrote: On 30/01/18 12:03, Hudalla Kai (INST/ECS4) wrote: Is it also ok for the receiver to send an attach with close=true in response to the reouter's detach (close=false), effectively closing the link for good? No, that would not work. The close actually needs to

Re: [Proton-J] Create exchange / queues and bind them using proton-j library

2018-01-31 Thread Gordon Sim
On 31/01/18 13:18, Keith W wrote: I think Dexter is using Qpid Broker-J. I do apologise. I saw RabbitMQ and clearly didn't spend enough time reading before responding! - To unsubscribe, e-mail:

Re: [Proton-J] Create exchange / queues and bind them using proton-j library

2018-01-31 Thread Keith W
I think Dexter is using Qpid Broker-J. Broker-J does have the ability to dynamically create nodes (queues or exchanges) in response to an attempt to form a link to an address. This is called node auto creation and is something that is configured on the Broker. The client side has no knowledge.

Re: [Proton-J] Create exchange / queues and bind them using proton-j library

2018-01-31 Thread Gordon Sim
On 30/01/18 23:29, dexter wrote: Hi, I'm trying to create dynamically an exchange type topic and some queues and bind them with the topic using a bindingKey using the latest Java library proton-j-0.25.0.jar on a Apache Qpid Broker-J 7.0.0 server. If the exchange / queues are in place (created