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.
Asked
Active
Viewed 116 times
1 Answers
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
-
Thank you for answer, Stefano. I've created issue have relation to this problem. https://github.com/akka/alpakka/issues/409 – Vladimir Lubenchenko Jul 16 '17 at 17:26