@hackage / soap-openssl

TLS-enabled SOAP transport (using openssl bindings)

Latest0.1.0.2

About

Metadata

  • Last updated , by AlexanderBondarenko
  • License MIT
  • Categories Web Development
  • Maintained by: aenor.realm@gmail.com

  • Lottery factor: 0

Links

Installation

Readme

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