You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Adrian Rosoga <ar...@taralnetworks.com> on 2003/01/31 00:00:37 UTC

[users@httpd] question about making a module handle a request

Hi.
 
I would like to have a custom built module handle POST messages having
the request line as "POST / HTTP1.0".
 
Currently I use an approach I don't like:
-          have "POST /.req HTTP1.0" in the request line
-          add a "AddHandler            oper-script req" in the Apache
config file.
 
What should be done in order to have the module handle POST requests
with any URI (it would be fine enough to have it handle "/")?
Would simply replace the mod_cgi with this module solve the problem? As
this is more intrusive, I would like avoiding changing standard Apache
stuff.
 
Regards,
Adrian