On 26/05/2020 7:56 am, mohank wrote:
Hi,

I have tried with sample application for request response app.

Broker : rabbitMQ 3.8.0
client : QPID C++ 1.36
Reference doc :
https://qpid.apache.org/releases/qpid-cpp-1.39.0/messaging-api/book/ch01s12.html

getting the below exception.

Address responseQueue("#response-queue; {create:always, delete:always}");
Receiver receiver = session.createReceiver(responseQueue);
        *Exception : Delete policies not supported over AMQP 1.0.*
        
//Removed delete:always
Address responseQueue("#response-queue; {create:always}");
Receiver receiver = session.createReceiver(responseQueue);
        *Exception : Session ended by peer with amqp:not-implemented: Dynamic
sources not supported*

RabbitMQ does not support temporary, server assigned addresses (i.e. the 'dynamic' addresses). You could instead try to use something like "'/exchange/amq.direct/<uuid>'" as the address for the receiver, where uuid is replaced with some unique character string.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org
For additional commands, e-mail: users-h...@qpid.apache.org

Reply via email to