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
2008-12-17 18:33:53
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
2008-12-17 18:36:32