[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Maxence Guesdon <maxence.guesdon@i...> |
| Subject: | Re: [Caml-list] FastCGI |
On Thu, 20 Oct 2005 12:23:41 +0200 David Baelde <david.baelde@gmail.com> wrote: > Hi list, Hello, > There seems to be many (Fast)CGI implementations in OCaml around: > XCaml, CamlGI, caml-fastcgi, OCamlNet... But many seem dead, or won't > even build. I'm wondering which one should I choose, and I'd be glad > to find some examples or a good doc to start with. Any experiences ? I > hope the OCaml FastCGI community hasn't give up. You may have a look at Ocgi: http://pauillac.inria.fr/~guesdon/Tools/ocgi/ The library includes functions to retrieve arguments and environment values. Functors can be used to create "models" of cgi handling sessions with cookie or in parameters. A lot of useful functions are included to send mails, escaping strings, building HTML structures (list in tables, ...). At last, a template tool is included to make the use of forms easier (using generated record types). This tool can also be used to create templates for html code or even mail bodies (or any text, in fact). Regards, Maxence Guesdon