posted 13 years ago
This question is related to C module in apache HTTP server.
The need is to read post request data in apache HTTP server & modify it, before request reaches to WebLogic application server.
We first considered to have perl filter (using mod_perl2) which will do this but we discarded perl because of reasons like it's slower etc. So we are now building same kind of filter in C language.
I am able to invoke C module (.so module) for a particular URL. It reads get request parameters also. The code is as follows:
However I didn't find any code sample which reads post request.
Can someone help?
Thanks.