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

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...