soap-openssl

TLS-enabled SOAP transport (using openssl bindings)

https://bitbucket.org/dpwiz/haskell-soap

Version on this page:0.1.0.2
LTS Haskell 19.33:0.1.0.2@rev:3
Stackage Nightly 2022-03-17:0.1.0.2@rev:2
Latest on Hackage:0.1.0.2@rev:3

See all snapshots soap-openssl appears in

MIT licensed by Alexander Bondarenko
Maintained by [email protected]
This version can be pinned in stack with:soap-openssl-0.1.0.2@sha256:1925c7742f3119a0652f66385644550cc75f7042bab047d684d9831849236360,1344

Module documentation for 0.1.0.2

TLS-enabled SOAP transport (using openssl bindings)

main = withOpenSSL $ do
    -- Initial one-time preparations.
    settings <- makeSettings (Just ("client.crt", "client.key"))
    transport <- initTransportWith settings "http://example.com/soap/endpoint" id (iconv "cp-1251")

    -- the rest is the same as before...