Browse thread
Interface mismatch on build
-
Jonathan Hayward http://JonathansCorner.com
- Jonathan Roewen
[
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: | 2006-07-14 (16:10) |
From: | Jonathan Roewen <jonathan.roewen@g...> |
Subject: | Re: [Caml-list] Interface mismatch on build |
> I'm still trying to get ocamlnet2 to build, or at least netcgi--if I can't > get ocamlnet/netcgi to work with, is there a plainer alternative to netcgi > that will let me access CGI values and make a slightly older-style CGI > script? You can try http://www.lri.fr/~filliatr/ftp/ocaml/cgi/ For do it yourself, you can grab env parameters (such as query string, cookies, etc) using Sys.getenv, or read post data from stdin (after getting the content-length header). Just a matter of writing the parsing stuff yourself (which these libs do for you, and a little more).