[VOTE] Release Qpid Dispatch Router 1.18.0 (RC1)

2021-11-16 Thread Ken Giusti
Hello All, Please cast your vote on this thread to release RC1 as the official Qpid Dispatch Router version 1.18.0. RC1 of Qpid Dispatch Router version 1.18.0 can be found here: https://dist.apache.org/repos/dist/dev/qpid/dispatch/1.18.0-rc1/ To validate the integrity and signature of the tar

Re: Setting application properties on Message with Qpid Proton Python

2021-11-16 Thread Kai
Aha, that's it! Thanks for the pointer, Robbie :-) On Tue, Nov 16, 2021 at 5:10 PM Robbie Gemmell wrote: > > https://qpid.apache.org/releases/qpid-proton-0.36.0/proton/python/docs/proton.html#proton.int32 > ? > > On Tue, 16 Nov 2021 at 15:54, Kai wrote: > > > > Hi Gorden, > > I have set the

Re: Setting application properties on Message with Qpid Proton Python

2021-11-16 Thread Robbie Gemmell
https://qpid.apache.org/releases/qpid-proton-0.36.0/proton/python/docs/proton.html#proton.int32 ? On Tue, 16 Nov 2021 at 15:54, Kai wrote: > > Hi Gorden, > I have set the PN_TRACE_FRM=1 environment variable and I can see that the > "status" property is indeed included in the message sent.

Re: Setting application properties on Message with Qpid Proton Python

2021-11-16 Thread Kai
Hi Gorden, I have set the PN_TRACE_FRM=1 environment variable and I can see that the "status" property is indeed included in the message sent. However, it seems to be encoded as a 64bit integer, i.e. as an AMQP 1.0 long. The consumer, however, expects it to be an AMQP 1.0 int. Is there a way to

Re: Setting application properties on Message with Qpid Proton Python

2021-11-16 Thread Kai
Hi Gordon, when I run that script I do not see anything happening apart from a blinking cursor. My python environment is > python3 --version Python 3.9.7 On Tue, Nov 16, 2021 at 2:21 PM Gordon Sim wrote: > On Tue, Nov 16, 2021 at 12:17 PM Kai wrote: > > I am trying to set some application

Re: Setting application properties on Message with Qpid Proton Python

2021-11-16 Thread Gordon Sim
On Tue, Nov 16, 2021 at 12:17 PM Kai wrote: > I am trying to set some application properties on a message to be sent > using Qpid Python 0.36 using the following code: > msg = Message( > body="the body", > properties={ > "status": 200 >

Setting application properties on Message with Qpid Proton Python

2021-11-16 Thread Kai
Hi, I am trying to set some application properties on a message to be sent using Qpid Python 0.36 using the following code: msg = Message( body="the body", properties={ "status": 200 }, address="reply-to-address",