Re: how to rewrite to a POST

2000-04-27 Thread Ken Y. Clark
On Wed, 26 Apr 2000, David Hajoglou wrote: so, is it possible to take a GET request and rewrite the uri into a POST request and if so how? i'm not sure if that's really necessary. you could just put the GET args into $r-pnotes, perhaps like so: sub handler { my $r = shift; return

RE: how to rewrite to a POST

2000-04-27 Thread Geoffrey Young
-Original Message- From: Ken Y. Clark [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 27, 2000 9:06 AM To: [EMAIL PROTECTED] Subject: Re: how to rewrite to a POST On Wed, 26 Apr 2000, David Hajoglou wrote: so, is it possible to take a GET request and rewrite the uri

Re: how to rewrite to a POST

2000-04-27 Thread J. J. Horner
On Thu, 27 Apr 2000, Ken Y. Clark wrote: On Wed, 26 Apr 2000, David Hajoglou wrote: so, is it possible to take a GET request and rewrite the uri into a POST request and if so how? i'm not sure if that's really necessary. you could just put the GET args into $r-pnotes, perhaps like

Re: how to rewrite to a POST

2000-04-27 Thread Kip Cranford
On: Thu, 27 Apr 2000 09:06:24 EDT "Ken Y. Clark" wrote: On Wed, 26 Apr 2000, David Hajoglou wrote: so, is it possible to take a GET request and rewrite the uri into a POST request and if so how? i'm not sure if that's really necessary. you could just put the GET args into $r-pnotes, perhaps

Re: how to rewrite to a POST

2000-04-27 Thread David Hajoglou
Ok, looking at all the posts I need to spell all of it out. I am using the database through the backend to prevend any passwords from being transmited and possibally cached in a browser. Here is how it works: Our user, lets call him John, loggs into our portal. This is a microsoft environment

Re: how to rewrite to a POST

2000-04-27 Thread Jim Winstead
On Apr 27, David Hajoglou wrote: I need to use the post, because that is what php3 is expecting. If anybody can think of any better way I would like to hear it. If not, then is it possible to translate a GET uri into a POST uri with a PerlTransHandler (or any other handler for that