I first tried doing this:
Message message = session.createTextMessage("test");
AMQMessageDelegate_0_10 delegate = (AMQMessageDelegate_0_10) ((AbstractJMSMessage)message).getDelegate();
delegate.getDeliveryProperties().setRoutingKey("rk1");
But upon sending the message, it still had the routing key that was set in my Destination.
Looking at Qpid's Java source code, I'm not sure this is currently possible. If you look at https://svn.apache.org/repos/asf/qpid/trunk/qpid/java/client/src/main/java/org/apache/qpid/client/BasicMessageProducer_0_10.java, you'll see code like this:
String routingKey = destination.getRoutingKey().toString();
if (deliveryProp.getRoutingKey() == null || ! deliveryProp.getRoutingKey().equals(routingKey))
{
deliveryProp.setRoutingKey(routingKey);
}
This unfortunately appears to mean that even if you set a routing key on your message, it will be replaced by the destination's routing key if the message's routing key differs from the destination's routing key.
There may be a way to do this, but I'm not super familiar with the Java side of Qpid, unfortunately. Your best bet is probably to ask on the Qpid User Mailing List (see http://qpid.apache.org/mailing_lists.html for info).