Kalle Kärkkäinen wrote:
I need one-to-one channels for server-to-client updates.
How would I go about this? I've been planning on creating a temporary
queue in client and sending queue name in login request.
Is there another way?
If I understand correctly you want to have a 'server' program that
connects to an AMQP broker, and 'client' programs that then communicate
through the broker with the 'server' to exploit whatever service its
offering. The clients each need to have an individual conversation with
the service.
If so, then yes, create a temporary queue and then set the reply-to on
messages sent to the service. That service can then use the address
given to send responses back to the specific client that needs them.