RabbitMQ Messaging with QPID 0.32 client
问题 Using QPID Java Client i can only get messages delivered through the exchange to the bound queue using the following expanded syntax of AMQAnyDestination Destination queue = new AMQAnyDestination( new AMQShortString("onms2"), new AMQShortString("direct"), new AMQShortString("Simon"), true, true, new AMQShortString(""), false, bindvars); If i attempt to use the different form which just specifies the address as follows it doesnt work:- Destination queue = new AMQAnyDestination("onms2/Simon");