Qpid 0.6 implements AMQP 0-10 protocol. This protocol is removing the concepts
of exchanges and bindings from previous versions, and replacing these with
queues and links. Yet in the examples directory of qpid 0.6 there are still the
old queue#declare queue#exchange_bind from the old protocol:
session.queueDeclare(arg::queue=response_queue.str());
session.exchangeBind(arg::exchange="amq.direct",
arg::queue=response_queue.str(), arg::bindingKey=response_queue.str());
Is Qpid 0.6 backwords compatible ? Why is the old mechanism there ?