// AMQP version change: Hardwire the version to 0-8 (major=8, minor=0)
// TODO: Connect this to the session version obtained from ProtocolInitiation for this session.
byte major = (byte)8;
byte minor = (byte)0;
ExchangeBoundBody body = evt.getMethod();
AMQShortString exchangeName = body.exchange;
AMQShortString queueName = body.queue;
AMQShortString routingKey = body.routingKey;
if (exchangeName == null)