I'm looking at demonstrating Python code talking to Activemq. One of our usages with a existing Stomp client (not Python) is to send a message and request the response is sent to a specific queue. I.e. send a request and receive some data tied to that request.
I was wondering how this pattern could be accomplished using Stompest. In our current client the 'response->replyto' field is assigned the queue that the client wants the response posted to.
If this is possible, I would be very grateful if anybody could post some example code.
All the best,
Marc
client.send('/queue/request', headers={'reply-to': '/queue/reply'})