Re: Access to Apache 2 POST data?

2011-12-09 Thread Jordan Michaels
Jordan Michaels On 12/09/2011 11:58 AM, Lloyd Richardson wrote: while($r->read($buffer, 1024)) {} Should do it. -Original Message- From: Jordan Michaels [mailto:jor...@viviotech.net] Sent: December-09-11 1:46 PM To: modperl@perl.apache.org Subject: Access to Apache 2 POST data?

Re: Access to Apache 2 POST data?

2011-12-09 Thread Philip M. Gollucci
On 12/09/11 19:45, Jordan Michaels wrote: > I'm looking for a way to pass HTTP POST data from a POST request to a > subrequest, however, I can't find any methods in the mod_perl API that > deal with a HTTP POST request body. > > Apche 1 mod_perl had $r->content, but that doesn't appear to be prese

RE: Access to Apache 2 POST data?

2011-12-09 Thread Lloyd Richardson
while($r->read($buffer, 1024)) {} Should do it. -Original Message- From: Jordan Michaels [mailto:jor...@viviotech.net] Sent: December-09-11 1:46 PM To: modperl@perl.apache.org Subject: Access to Apache 2 POST data? I'm looking for a way to pass HTTP POST data from a POST requ

Access to Apache 2 POST data?

2011-12-09 Thread Jordan Michaels
I'm looking for a way to pass HTTP POST data from a POST request to a subrequest, however, I can't find any methods in the mod_perl API that deal with a HTTP POST request body. Apche 1 mod_perl had $r->content, but that doesn't appear to be present in Apache 2 mod_perl. Can anyone point me to