Re: Keeping POST information between request phases

2001-10-01 Thread Alin Simionoiu
Apache::Request-instance($r) will not work for POST reqests. At list will not do what you want. Read this for more information: http://perl.apache.org/guide/snippets.html#Reusing_Data_from_POST_request On Sun, 2001-09-30 at 09:15, Thomas Eibner wrote: On Sun, Sep 30, 2001 at 05:59:08PM

Re: Keeping POST information between request phases

2001-10-01 Thread Alin Simionoiu
, Thomas Eibner wrote: On Sun, Sep 30, 2001 at 03:23:51PM -0700, Alin Simionoiu wrote: Apache::Request-instance($r) will not work for POST reqests. At list will not do what you want. Apache::Request-instance works very well with POST requests. From the documentation: instance

Re: Cloning the request object

2001-09-09 Thread Alin Simionoiu
I forgot to mention that I'm trying to inspect the body in a authentication handler. As soon as a get the body, the body is gone. - Original Message - From: Steven Lembark [EMAIL PROTECTED] To: Alin Simionoiu [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Saturday, September 08, 2001 5:39

Cloning the request object

2001-09-08 Thread Alin Simionoiu
Hi there, Those anybody know if is possible to clone the apache request object?. I'm trying to write a Apache module that do some basic validation against the request parameters. But as soon as a touching the request is gone. any other posibilities? thank's alin