[Haskell-cafe] HTTPS in Haskell

Adam Peacock adpeac at gmail.com
Fri Aug 18 21:34:22 EDT 2006


On 8/18/06, Pasqualino 'Titto' Assini <tittoassini at gmail.com> wrote:
>
> Is there any implementation of HTTPS/SSL in Haskell?
>
>
>
> This would seem to be critical to develop commercial web applications.

WASH has a run time function ( runWithOptions ) that has type:

runWithOptions :: CGIOptions -> CGI () -> IO ()

with...

type CGIOptions = [CGIOption]

data CGIOption =
....
AutoHttps -- autodetect Https by checking for port number 443 and env var HTTPS
...

Taken from:

http://www.informatik.uni-freiburg.de/~thiemann/WASH/doc/WASH-CGI-CGI.html

Adam.


More information about the Haskell-Cafe mailing list