RE: Getting post data

2006-10-05 Thread Garrett, Philip \(MAN-Corporate\)
Malcolm J Harwood wrote: 1) Is the headers_in case sensitive? (content-length ne Content-Length)? I believe so. The APR::Table docs say that it is case-INsensitive. Philip

Re: Getting post data

2006-10-04 Thread Malcolm J Harwood
On Thursday 28 September 2006 04:03, Erik Norgaard wrote: (I don't recall seeing a response to this, apologies if I'm duplicating). I am using Apache 2.2 with mod_perl2. Reading the documentation I have found that I should get POST data using read(): $r-read($buffer,

Getting post data

2006-09-28 Thread Erik Norgaard
Hi: I am using Apache 2.2 with mod_perl2. Reading the documentation I have found that I should get POST data using read(): $r-read($buffer, $r-headers_in('content-length')) A few questions - ok, some may really be related to the http protocol: 1) Is the headers_in case sensitive?

Re: Getting post data

2006-09-28 Thread Tom Schindl
Hi, Please use one of the modules to read data: - libapreq2 (http://search.cpan.org/~joesuf/libapreq2-2.08/) - CGI.pm (comes with your perl-distro maybe you need to update it from CPAN if you have an older perl) Tom Erik Norgaard schrieb: Hi: I am using Apache 2.2 with mod_perl2.

Re: Getting post data

2006-09-28 Thread Greger
On Thu, 28 Sep 2006 10:06:05 +0200, Tom Schindl wrote Hi, Please use one of the modules to read data: - libapreq2 (http://search.cpan.org/~joesuf/libapreq2-2.08/) - CGI.pm (comes with your perl-distro maybe you need to update it from CPAN if you have an older perl) Tom Erik

Re: Getting post data

2006-09-28 Thread Erik Norgaard
Tom Schindl wrote: Please use one of the modules to read data: - libapreq2 (http://search.cpan.org/~joesuf/libapreq2-2.08/) - CGI.pm (comes with your perl-distro maybe you need to update it from CPAN if you have an older perl) Thanks! Apache2::Request is just what I need - I

Re: Getting post data

2006-09-28 Thread Lionel MARTIN
- From: Erik Norgaard [EMAIL PROTECTED] To: modperl@perl.apache.org Sent: Thursday, September 28, 2006 10:03 AM Subject: Getting post data Hi: I am using Apache 2.2 with mod_perl2. Reading the documentation I have found that I should get POST data using read(): $r-read($buffer, $r-headers_in