On Thu, Jul 1, 2021 at 1:08 PM [email protected]
<[email protected]> 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 -
> qpid::messaging::Receiver topic_receiver = 
> session.createReceiver("topic://ID.ExampleTopic; {node:{type:topic}}"
> ");

You need some ugly quoting in there, netsed single quotes around the
address, e.g.:

   session.createReceiver("'topic://ID.ExampleTopic'; {node:{type:topic}}");

That prevents the '/' being misinterpreted. (It has special meaning in
the qpid::messaging address syntax, which we don't want here).


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to