RE: boost link error

2012-03-21 Thread Steve Huston
Hi Salman, > -Original Message- > From: Pervez, Salman [mailto:salman.per...@citadelgroup.com] > Sent: Tuesday, March 20, 2012 4:13 PM > To: users@qpid.apache.org > Subject: boost link error > > I am following up on my previous issue (which was solved with Steve's > generous input) with a

Re: Qpid destroys session after max queue size reached

2012-03-21 Thread Gordon Sim
On 03/20/2012 09:43 PM, Jeff Armstrong wrote: I have a queue with REJECT policy and a max count. If I connect a sender client and fill the queue to the max size, the broker seems to destroy the session. Using qpid-tool I can see that the session is gone, though the connection is still there. In t

Re: python QMF synchronization

2012-03-21 Thread MartiN Beneš
Interesting. If I understand correctly, you are manually sending qmf2 commands to the broker. I would very much prefer to use existing qmf library instead of writing a new one. Specifically to use the library bundled with the qpidd (mrg) broker. On Wed, Mar 21, 2012 at 12:35, Pavel Moravec wrote:

Re: python QMF synchronization

2012-03-21 Thread Pavel Moravec
.. and now also for python client (that I overlooked in email subject): conn = Connection(broker) try: conn.open() ssn = conn.session() snd = ssn.sender("qmf.default.direct/broker") reply_to = "reply-queue; {create:always, node:{x-declare:{auto-delete:true}}}" rcv = ssn.receiver(reply_t

Re: python QMF synchronization

2012-03-21 Thread Pavel Moravec
Hi Martin, you can set up ReplyTo address where qpid shall send its response. I.e. something like C++ code below (that invokes queue deletion and fetches response in 30seconds limit): Connection connection(url); try { connection.open(); Session session = connection.create

python QMF synchronization

2012-03-21 Thread MartiN Beneš
Hi, I cannot find information about qmf synchronization. Or is every call synchronous? For instance if I purge a queue: queue.purge(0) how can i tell it was done?