Differences in CGI message handling on Hiawatha and Apache

I'm trying to create a lightweight development environment to allow direct CGI in Common Lisp, and I'd like to use Hiawatha instead of the much larger Apache. I have some code that works for both GET and POST in Apache, but only GET in Hiawatha; is there any difference in how Apache and Hiawatha handle POST?

0


source to share


1 answer


the CGI spec only states that POST data should be sent to a CGI script using a program STDIN

, as opposed to GET, which is sent in an environment variable QUERY_STRING

.



0


source







All Articles