[jira] [Commented] (PROTON-199) [Proton-c] Python binding requires python 2.6+

2013-01-15 Thread Ken Giusti (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13553808#comment-13553808 ] Ken Giusti commented on PROTON-199: --- +1 for 2.4 - that's the oldest version of python

Re: Is Proton a lightweight alternative to Qpid?

2013-01-15 Thread Rafael Schloming
On Mon, Jan 14, 2013 at 11:14 AM, Eagy, Taylor te...@blackbirdtech.comwrote: Hi guys, I've been using Qpid for the past several months and I really like it. However, I've mainly just been using it to pass messages between several Python processes running on the same machine, so using Qpid

Messenger API - what am I missing?

2013-01-15 Thread Simon MacMullen
Hi. I'm interested in testing Proton against the RabbitMQ AMQP 1.0 adapter. But I'm struggling with the APIs I need to use to write even a simple program. I'm using the Java version but from what I can see the C version has the same APIs. If I try to use the Messenger API then I don't see

Re: Messenger API - what am I missing?

2013-01-15 Thread Rafael Schloming
On Tue, Jan 15, 2013 at 9:33 AM, Simon MacMullen si...@rabbitmq.com wrote: Hi. I'm interested in testing Proton against the RabbitMQ AMQP 1.0 adapter. But I'm struggling with the APIs I need to use to write even a simple program. I'm using the Java version but from what I can see the C

Re: Messenger API - what am I missing?

2013-01-15 Thread Simon MacMullen
On 15/01/13 15:29, Rafael Schloming wrote: I'm guessing you need to set an address on the message. Messenger doesn't expose direct control over connections or links. It will figure out what connections/links to establish based on what address you specify on the message (kind of like SMTP). You

[jira] [Created] (PROTON-200) [Proton-c] Credit distribution by messenger is not balanced across all links

2013-01-15 Thread Ken Giusti (JIRA)
Ken Giusti created PROTON-200: - Summary: [Proton-c] Credit distribution by messenger is not balanced across all links Key: PROTON-200 URL: https://issues.apache.org/jira/browse/PROTON-200 Project: Qpid

Re: [VOTE] 0.3 RC3

2013-01-15 Thread Rajith Attapattu
On Mon, Jan 14, 2013 at 2:48 PM, Darryl L. Pierce dpie...@redhat.com wrote: On Mon, Jan 14, 2013 at 02:35:08PM -0500, Rajith Attapattu wrote: Rafi, We should create tags for the releases. Unless I have missed (in which case I apologize), I don't see any for 0.1 and 0.2 releases (I do see

Re: [VOTE] 0.3 RC3

2013-01-15 Thread Rafael Schloming
The staging repo has been released, the RCs were copied over to dist last night, and the download page was updated this morning. I've also created a 0.3 branch. --Rafael On Mon, Jan 14, 2013 at 4:31 PM, Darryl L. Pierce dpie...@redhat.comwrote: On Mon, Jan 14, 2013 at 02:14:26PM -0500, Rafael

Re: Messenger API - what am I missing?

2013-01-15 Thread Simon MacMullen
Yes, the Python version works as I would expect, modulo: * It strips the leading / from the target address * On my machine, localhost resolves to ::1, and Proton appears not to support IPv6. But both of those can be worked around. Thank you! Cheers, Simon On 15/01/13 16:11, Rafael Schloming

Re: Is Proton a lightweight alternative to Qpid?

2013-01-15 Thread Ted Ross
Taylor, Another possibility to look at is using ActiveMQ as your broker. They've added an AMQP transport (based on Proton-J) to their project recently. -Ted On 01/15/2013 12:37 PM, Eagy, Taylor wrote: Rafael, Thanks for responding. The only reason why I said it wouldn't be portable is

Re: Is Proton a lightweight alternative to Qpid?

2013-01-15 Thread Ted Ross
Taylor, You need the following files: proton.py (from proton-c/bindings/python) cproton.py (from $BUILD/bindings/python) _cproton.so(from $BUILD/bindings/python) libqpid-proton.so (from $BUILD) -Ted On 01/15/2013 03:35 PM, Eagy, Taylor wrote: Ted,