I have a JMSTemplate jmsT. To test it out, my only two lines of code are:
jmsT.convertAndSend("Location", "Message");
jmsT.receiveAndConvert("Location");
The code stalls at receiveAndConvert, waiting forever to receive a message as if it doesn't exist, despite that being exactly what the previous line creates.