Re: Python Proton Binding on Receiver for Broker

2022-04-29 Thread Gordon Sim
On Thu, Apr 28, 2022 at 9:58 PM ONeil, Jerome wrote: > So that's grand. I need to control the binding with more detail, though, and > for the life of me I can't figure out how to do it. I've tried controlling > on the URL. I've tried Filters and Selectors. I have tried a variety of >

RE: [EXTERNAL]: Re: Python Proton Binding on Receiver for Broker

2022-04-28 Thread ONeil, Jerome
until now I kind of like the Proton API. It is really concise, and who doesn’t love callbacks? Best regards, -J From: Steve Huston Sent: Thursday, April 28, 2022 2:19 PM To: users@qpid.apache.org Subject: [EXTERNAL]: Re: Python Proton Binding on Receiver for Broker Hi Jerome, You can do

Re: Python Proton Binding on Receiver for Broker

2022-04-28 Thread Steve Huston
Hi Jerome, You can do that with the Python QMF API. I extracted the below from another script so it may need some adjustments but should get you there. -Steve import os import sys from qpid import * import qpid.messaging host="localhost" port=5672 sock = util.connect(host, port) qmf_con =

Python Proton Binding on Receiver for Broker

2022-04-28 Thread ONeil, Jerome
Hello, I am trying to set up a receiver for a topic on a qpid C++ broker and need to control the binding between the Source exchange and the receiver queue. I can get a simple receiver set up just fine and pull messages from it. >>> event.container.create_receiver("amqp://localhost/MyTopic")