Haskell: which SOAP client lib to use?

前端 未结 1 755
醉酒成梦
醉酒成梦 2020-12-31 10:37

I\'d like to write s simple Haskell program that connects to a SOAP service. Ideally I\'d like to use the service\'s WSDL and get as straightforward access to the request pa

相关标签:
1条回答
  • 2020-12-31 11:09

    As @sclv says, the SOAP heyday was before Haskell was seriously used for web systems. As a result your options for fully-fledged SOAP libs are somewhat restricted.

    Obviously, HAIFA was the biggest effort back in the day, but it isn't on Hackage, so you're mostly out of luck there. Looks like shoap was a bit of an attempt at getting something simple working as well.

    For rolling your own, there are plenty of XML options to choose from on Hackage,

    • HaXML,
    • haxr
    • fancy "conduit"-style xml parsing
    0 讨论(0)
提交回复
热议问题