0

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.

karjan
  • 936
  • 1
  • 7
  • 17

1 Answers1

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