I have an application written in Scala/Akka and trying to add SOAP support. Anyone did it with Alpakka? Or what is the best way to do it. So far I think Camel is the best solution.
Asked
Active
Viewed 218 times
1 Answers
1
Currently, Alpakka does not support SOAP, but there is an open ticket. Your best bet is probably to use Camel integration in your Scala/Akka project. To that end, take a look at the streamz project or the Camel integration module in Akka (the latter is deprecated but may serve your needs).
There is also a library that provides some SOAP integration with Play.

Jeffrey Chung
- 19,319
- 8
- 34
- 54
-
Thanks, I think so too. – karjan Oct 17 '18 at 15:53