You can read the body data using the apache method "ap_get_client_block"
-----Original Message----- From: toni pérez [mailto:[EMAIL PROTECTED] Sent: Friday, September 08, 2006 10:42 AM To: [EMAIL PROTECTED] Subject: the request_rec structure in c plugins hello list, I'm building a C plugin for apache and, I need acces to the POST DATA in the request. I not found which structure contains the POST DATA in the request_rec structure. There is the args field that contains the query string, but is for GET method, I need the same for the POST method. In the headers space there are the headers fields and the post data that I need separated by 2 enters. example capture by ethereal : ---------------------------------------------------------------------------------------------------- POST /ejemplo.html HTTP/1.1 Host: localhost User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.3) Gecko/20060523 Ubuntu/dapper Firefox/1.5.0.3 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://localhost/ejemplo.html Content-Type: text/plain Content-Length: 51 name=yourname mail=yourmail comment=yourcomment ------------------------------------------------------------------------------------------------ How I can obtain the 3 fields (name,mail,comment) send by the form ? thanks, This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.
