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 Thomas Eibner
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 The instance() class method

Re: Keeping POST information between request phases

2001-10-01 Thread Alin Simionoiu
I tried instance, but is not working is you want to access let's say, POST data in a authentication handler, doing same data validation or whatever you want to do, and also access the same POST data at response phase. And this is because, as it is explained in guide, POST data are retrieved

Re: Keeping POST information between request phases

2001-10-01 Thread Thomas Eibner
On Sun, Sep 30, 2001 at 04:03:43PM -0700, Alin Simionoiu wrote: I tried instance, but is not working is you want to access let's say, POST data in a authentication handler, doing same data validation or whatever you want to do, and also access the same POST data at response phase. And this

RE: Keeping POST information between request phases

2001-10-01 Thread Geoffrey Young
-Original Message- From: Alin Simionoiu [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 30, 2001 7:04 PM To: Thomas Eibner Cc: Issac Goldstand; [EMAIL PROTECTED] Subject: Re: Keeping POST information between request phases I tried instance, but is not working is you want

Keeping POST information between request phases

2001-09-30 Thread Issac Goldstand
I know this sounds like a rather newbie-ish question, but I guess I never really did many inter-request-phase stuff before... Anyway, how can I keep track of the information from a POST request between different phases of Apache's handling? For example, if I have a $q=new

Re: Keeping POST information between request phases

2001-09-30 Thread Thomas Eibner
On Sun, Sep 30, 2001 at 05:59:08PM +0200, Issac Goldstand wrote: I know this sounds like a rather newbie-ish question, but I guess I never really did many inter-request-phase stuff before... Anyway, how can I keep track of the information from a POST request between different phases of