I'm trying to get access to the post parameters passed by an external calling service. I've reviewed the access logs, but only GET parameters are being saved. How do I enable the logging of POST params in my access logs? asked 06 Mar '12, 21:54 westhomas |
Hi, This is not supported by the core Apache HTTP server. You could still do it using an Apache module such as mod_dumpio: http://httpd.apache.org/docs/2.2/mod/mod_dumpio.html For this, you'd have to install your private Apache instance, and add the custom module to it. answered 07 Mar '12, 03:16 todork That's the same conclusion I was reaching as well. Guess I'll just do it in python. Thanks!
(07 Mar '12, 09:43)
westhomas
|