Re: QPID C++ Subscribing to a topic

2021-07-02 Thread Gordon Sim
> see that the outgoing frame also has the Sender queue address > 'queue://ID.ReqQueueExample' in the outgoing frame. I am not quite sure how > can I add that with the C++ QPID API. The Message class do not seem to have > that option. > > Any suggestions for the above 2 points

Re: QPID C++ Subscribing to a topic

2021-07-02 Thread Robbie Gemmell
ns for the above 2 points would be highly appreciated. > > Best Regards, > Rahul > -Original Message- > From: Robbie Gemmell > Sent: 01 July 2021 15:01 > To: users > Subject: Re: QPID C++ Subscribing to a topic > > On Thu, 1 Jul 2021 at 13:18, Gordon

RE: QPID C++ Subscribing to a topic

2021-07-02 Thread rahul.sin...@morganstanley.com
outgoing frame. I am not quite sure how can I add that with the C++ QPID API. The Message class do not seem to have that option. Any suggestions for the above 2 points would be highly appreciated. Best Regards, Rahul -Original Message- From: Robbie Gemmell Sent: 01 July 2021 15:01

Re: QPID C++ Subscribing to a topic

2021-07-01 Thread Robbie Gemmell
On Thu, 1 Jul 2021 at 13:18, Gordon Sim wrote: > > On Thu, Jul 1, 2021 at 1:08 PM rahul.sin...@morganstanley.com > wrote: > > 1. As per Robbie's suggestion, I have tried adding topic:// in the past > > as well but the address and name selection gets chopped off from our end > > (after

Re: QPID C++ Subscribing to a topic

2021-07-01 Thread Gordon Sim
On Thu, Jul 1, 2021 at 1:08 PM rahul.sin...@morganstanley.com wrote: > 1. As per Robbie's suggestion, I have tried adding topic:// in the past as > well but the address and name selection gets chopped off from our end (after > topic: ) in the outgoing AMQP frame to Broker. > > Our Code - >

Re: QPID C++ Subscribing to a topic

2021-07-01 Thread rahul.sin...@morganstanley.com
quot;; JMSConsumer topicConsumer = context.createDurableConsumer(dataTopic, uniqueID); One thing I noticed is that the "durable" parameter is 0 in our outgoing frames. Was wondering if there is a way to set that upfront while creating the Receiver. ( I have seen durable feature with

Re: QPID C++ Subscribing to a topic

2021-07-01 Thread Robbie Gemmell
pic usage clear. I also experimented with creating a Sender with > same topic name but I get the same error. > > Best Regards, > Rahul > > -Original Message- > From: Gordon Sim > Sent: 30 June 2021 10:01 > To: users@qpid.apache.org > Subject: R

Re: QPID C++ Subscribing to a topic

2021-07-01 Thread Gordon Sim
st Regards, > Rahul > > -Original Message- > From: Gordon Sim > Sent: 30 June 2021 10:01 > To: users@qpid.apache.org > Subject: Re: QPID C++ Subscribing to a topic > > On Wed, Jun 30, 2021 at 9:40 AM rahul.sin...@morganstanley.com > wrote: > > After being

RE: QPID C++ Subscribing to a topic

2021-07-01 Thread rahul.sin...@morganstanley.com
ith same topic name but I get the same error. Best Regards, Rahul -Original Message- From: Gordon Sim Sent: 30 June 2021 10:01 To: users@qpid.apache.org Subject: Re: QPID C++ Subscribing to a topic On Wed, Jun 30, 2021 at 9:40 AM rahul.sin...@morganstanley.com wrote: > After

Re: QPID C++ Subscribing to a topic

2021-06-30 Thread Gordon Sim
On Wed, Jun 30, 2021 at 9:40 AM rahul.sin...@morganstanley.com wrote: > After being able to establish the connection with the broker at other end, we > try to subscribe to a given topic. For this, we create the receiver with > string mapping to the topic. ( Id.ExampleTopic ), where Id is the

QPID C++ Subscribing to a topic

2021-06-30 Thread rahul.sin...@morganstanley.com
Hello, After being able to establish the connection with the broker at other end, we try to subscribe to a given topic. For this, we create the receiver with string mapping to the topic. ( Id.ExampleTopic ), where Id is the identifier broker assigned to us and ExampleTopic is the topic. We