Is there any option to set a routing key at message level in Apache Qpid. The way I currently do is

  1. Specify routing key in address string. Create a producer with this destination address.

    topic = (Topic) context.lookup("destination"); sender = session.createProducer(topic);

  2. Send messages through the producer.

This way all the messages have the same routing key. What I want to achieve is set a routing key for each message individually.

Let me know if this can be done

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

This can be easily done by specifying a per message subject. The "subject" as defined by the Qpid address scheme, would map to the routing key for Topics when using the 0-10 protocol.

Message m = ssn.createMessage();
m.setStringProperty("qpid.subject", "my-subject");
prod.send(m);

This allows you to use standard JMS interfacing while still using the Qpid add-ons.

link|improve this answer
I could find a supporting test case in Qpid Test Case also. Will try and get back – ManojGumber Feb 15 at 5:27
feedback

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).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.