Re: [mp2] query_string

2005-02-18 Thread William Ross
On 18 Feb 2005, at 13:11, Geoffrey Young wrote: William Ross wrote: hello list. very dumb question for you: with mod_perl2 and apreq2, what is the proper way to get the raw query string? using just the mp2 api its $r->args, just like mp1 http://perl.apache.org/docs/2.0/api/Apache/RequestRec.html#C

Re: AW: [mp2] query_string

2005-02-18 Thread Geoffrey Young
Denis Banovic wrote: > Hi Will, > > The simplest way is to get it out of the %ENV that's not really true - that %ENV is popualted with standard CGI variables is not a given in mod_perl 2: http://perl.apache.org/docs/2.0/user/config/config.html#C_SetupEnv_ basically, mod_perl configured as a

Re: [mp2] query_string

2005-02-18 Thread Geoffrey Young
William Ross wrote: > hello list. > > very dumb question for you: with mod_perl2 and apreq2, what is the > proper way to get the raw query string? using just the mp2 api its $r->args, just like mp1 http://perl.apache.org/docs/2.0/api/Apache/RequestRec.html#C_args_ using apreq2 it looks like y

AW: [mp2] query_string

2005-02-18 Thread Denis Banovic
Hi Will, The simplest way is to get it out of the %ENV Denis -Ursprüngliche Nachricht- Von: William Ross [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 18. Februar 2005 13:02 An: modperl@perl.apache.org Betreff: [mp2] query_string hello list. very dumb question for you: with

[mp2] query_string

2005-02-18 Thread William Ross
hello list. very dumb question for you: with mod_perl2 and apreq2, what is the proper way to get the raw query string? (I want to pass it through the login process.) or is this Bad Thinking? thanks will