I have created on replyQ and done biniding with one direct exchange. Created the message by setting replyto property to "replyQ" And sending the message on rabbit to the other service. The service at other end getting the message and sending reply on given replyTo queue.
and now I am trying to read from a replyQ queue using
template.receiveAndConvert(replyQueue));
But getting null response and i can see the message in the replyQ. That is the service is able to send the reply but am not able to read it from the given queue
Please help what is going wrong.