1

I've used alpakka(Scala) and JMS connector for sending/receiving messages between client and server. All working perfect, but I don't know - how I can set correlationId in jms.Message in response. Any idea, please. Thank you.

1 Answers1

0

It is currently not possible to set a correlationId in your JMS message when using Alpakka. This is because the Alpakka Sink creates a text message and sends it to the broker as part of the same handler (see code).

You can always open an issue here and explain your reasons. Pull requests for improvements are always welcome!

Stefano Bonetti
  • 8,973
  • 1
  • 25
  • 44