Re: Qpid Subversion reorganization proposal

2016-03-14 Thread Justin Ross
After a delay, I'm back to this task. Please see the updated plan: https://github.com/ssorj/qpid-svn-reorg Highlights: - Assume migration to git for qpid-cpp and -python - Use Andrew's suggested steps for the reorg and git migration - This is the least effort for me, so I chose i

Re: filter (selector?)

2016-03-14 Thread xavier
Thank you for the help Regards -- View this message in context: http://qpid.2158936.n2.nabble.com/filter-selector-tp7639961p7640033.html Sent from the Apache Qpid users mailing list archive at Nabble.com. - To unsubscribe, e-

Re: [C++ broker] temporary queues and ACL ussage

2016-03-14 Thread Chuck Rolke
C++ Broker ACL does not deal well with the autogenerated queue names. You may try using ACL to limit users to creating/accessing only one autodelete queue that is prefixed with the user name. This keeps each user in his own box and still has the effect of temporary queues. [snip] acl allow al

Re: [C++ broker] temporary queues and ACL ussage

2016-03-14 Thread Jakub Scholz
Hi, > if I understand correctly creator of temporary queue is the only one that is able to receive from it I don't think the temporary queues work like this - unless they are created as exclusive, someone else than the creator of the queue can connect to the queue and the messages will be distrib

Proton API documentation effort

2016-03-14 Thread Justin Ross
Part of the recent work on the Proton C++ binding has been to review the Proton API, deliberate on questions, and set down a pattern for use in future work. I've been recording the outcomes of those deliberations. I've also been collecting together and linking in the various pieces of documentati

[C++ broker] temporary queues and ACL ussage

2016-03-14 Thread Domen Vrankar
Hi, I'm using qpid C++ 0.34 with SSL authentication. I have a mixture of durable and temporary queues and am trying to limit the access with ACL. All users have access to a single exchange for sending message but only some users have permission to read from one or more queues connected to that e

Re: filter (selector?)

2016-03-14 Thread Gordon Sim
On 11/03/16 15:47, xavier wrote: Hi all, I work on a project who use qpid messaging to dialogue in AMQP. I have a question about selector (to do request/reply pattern), I want retrieve a message on a queue or topic but with a filter (selector?), like correlation_id = '123456789', do you have any

Re: filter (selector?)

2016-03-14 Thread xavier
Hi, I would like using the Qpid Proton C++ lib (the latest (0.12.0)), and I would like to have the amqp 1.0 compliant. The amqp 1.0 would allow me to have a connection with activeMq (my broker for the moment), and with perhaps in the futur with the qpid broker. Thank you for your help. Regards