RE: Poor performance with Session in qpid-cpp

2022-04-28 Thread Millieret, Xavier
; }); } Regards From: Millieret, Xavier Sent: mercredi 27 avril 2022 16:37 To: 'users@qpid.apache.org' Subject: RE: Poor performance with Session in qpid-cpp Hi Robbie, Thx a lot for your explanation, I will try with the latest library (0.37.0), and I send you my feedback. From: Mi

RE: Poor performance with Session in qpid-cpp

2022-04-27 Thread Millieret, Xavier
Hi Robbie, Thx a lot for your explanation, I will try with the latest library (0.37.0), and I send you my feedback. From: Millieret, Xavier Sent: mercredi 27 avril 2022 10:24 To: users@qpid.apache.org Subject: Poor performance with Session in qpid-cpp Hi all, I am using on linux the qpid

Poor performance with Session in qpid-cpp

2022-04-27 Thread Millieret, Xavier
Hi all, I am using on linux the qpid-proton cpp 0.34 library, coupled to activemq 5.16 on Debian 11 I don't understand why the code who using session object (or default_session) to send or a receive message, when I try to close it (for example, the receiver), it's 2 times more important than u

RE: Slowness to reuse connection

2021-10-04 Thread Millieret, Xavier
Hi, Thanks a lot Robbie for these explanations, and now I understood, what happened 😉 I will do some modifications in my code to be align with the qpid prton container philosophy Regards From: Millieret, Xavier Sent: lundi 4 octobre 2021 10:37 To: users@qpid.apache.org Subject: Slowness to

Slowness to reuse connection

2021-10-04 Thread Millieret, Xavier
Hi all, I work on the qpid-protn 0.34 on linux Debian 11, and with mosquito broker, with version 2.0.10-6. I have an issue and I don't understand why, when I do this: Chain send message just after an on_sender_open, it's ok, and relatively fast class client : public proton::messaging_handler {

RE: Best practice with qpid-proton for request/reply and pub/sub

2021-09-07 Thread Millieret, Xavier
Great Robbie, Thanks a lot for these answers! From: Millieret, Xavier Sent: mardi 7 septembre 2021 14:12 To: users@qpid.apache.org Subject: Best practice with qpid-proton for request/reply and pub/sub Hi all, I am currently doing a library above qpid-proton in cpp (0.34). This library must

Best practice with qpid-proton for request/reply and pub/sub

2021-09-07 Thread Millieret, Xavier
Hi all, I am currently doing a library above qpid-proton in cpp (0.34). This library must offer 2 patterns, request/reply, and publish/subscribe. I play with all samples provided by qpid-proton cpp/examples/ And my question is: * Is the best way, is: building a class who extend proton:

RE: Publish, subscibe

2021-09-07 Thread Millieret, Xavier
Hi Robbie, Thanks a lot for these explanations. Regards From: Millieret, Xavier Sent: lundi 6 septembre 2021 15:47 To: users@qpid.apache.org Subject: RE: Publish, subscibe Ah damn . Yes cool, it's works fine with activemq. Thanks a lot. If I replace activemq by qpidd, the topic i

RE: Publish, subscibe

2021-09-06 Thread Millieret, Xavier
when we create a receiver, but just with qpid::proton api how can we do that? Thanks a lot for these help From: Millieret, Xavier Sent: lundi 6 septembre 2021 12:00 To: 'users@qpid.apache.org' Subject: RE: Publish, subscibe Hi Robbie, Thx a lot for your answer, and help. You right, I m

RE: Publish, subscibe

2021-09-06 Thread Millieret, Xavier
for the both Regrads From: Millieret, Xavier Sent: vendredi 3 septembre 2021 17:24 To: 'users@qpid.apache.org' Subject: Publish, subscibe Dear all, I am writing an amqp client above to Qpid proton 0.35. I would like to write a simple subscriber for a topic name! I don'

Publish, subscibe

2021-09-03 Thread Millieret, Xavier
Dear all, I am writing an amqp client above to Qpid proton 0.35. I would like to write a simple subscriber for a topic name! I don't found, or see, any samples on it on qpid-proton samples? I read than to do that we must set the routing type to multicast, I don't know how to do that, or see