Re: mod_perl 2 setting request parameters

2006-09-14 Thread Jeremy Nixon
Johnny Shz <[EMAIL PROTECTED]> wrote: > I couldn't seem to find an equivalent in mod_perl 2, Apache2::Request > allows retrieving parameters by its param() method, but no way to set > the parameters to be processed further down the chain. Apache2::Request removed the ability to set the request pa

mod_perl 2 setting request parameters

2006-09-14 Thread Johnny Shz
Hi, I'm trying to migrate some existing mod_perl 1 code to mod_perl 2. The original code uses many calls like: my $value = $r->args->{'foo'}; $r->args->{'foo'} = "bar";   to get and set request parameters. I couldn't seem to find an equivalent in mod_perl 2, Apache2::Request allows retrieving