views:

205

answers:

1

I'm trying to set up a light development environment to allow straight CGI in Common Lisp, and I'd like to use Hiawatha instead of the much larger Apache. I have code that works for both GET and POST in Apache, but only GET in Hiawatha; is there a difference in the way Apache and Hiawatha handle POST?

A: 

The CGI specification only specifies that POST data should be sent to a CGI script using the program's STDIN, as opposed to GET which is sent in the environment variable QUERY_STRING.

R. Bemrose
I must have been unclear; I meant that my code worked for both GET and POST in Apache, but only GET in Hiawatha. I'll edit.
JasonFruit