Apache2::Request for ActivePerl Win32

2007-03-29 Thread Kelvin Wu
Hi list, Is there a Apache2::Request module for ActivePerl Win32 (v5.8.8 built for MSWin32-x86-multi-thread) and mod_perl 2? I am trying to read parameters from query, the $r->args() call in mod_perl 2 simply returns whole URI rather than key/value hash which mod_perl1 does. After some research,

Re: Apache2::Request for ActivePerl Win32

2007-03-29 Thread Issac Goldstand
Absolutely. Set up Randy Kobes's PPM repository (http://theoryx5.uwinnipeg.ca/ppms/ for latest ActivePerl with PPM4 (build 819 and above) or http://theoryx5.uwinnipeg.ca/cgi-bin/ppmserver?urn:/PPMServer58 for earlier versions). There's also a binary mod_perl2 there. Issac Kelvin Wu wrote: > H

Re: Apache2::Request for ActivePerl Win32

2007-03-29 Thread Kelvin Wu
I tried URI use URI; use URI::Escape; my $uri = URI->new($r->unparsed_uri()); my %args = $uri->query_form(); $r->print($args{"key"}); it works too. On 3/29/07, Kelvin Wu <[EMAIL PROTECTED]> wrote: Hi list, Is there a Apache2::Request module for ActivePerl Win32 (v5.8.8 built for MSWin32-x

Re: Apache2::Request for ActivePerl Win32

2007-03-29 Thread Randy Kobes
On Thu, 29 Mar 2007, Issac Goldstand wrote: Kelvin Wu wrote: Is there a Apache2::Request module for ActivePerl Win32 (v5.8.8 built for MSWin32-x86-multi-thread) and mod_perl 2? Absolutely. Set up Randy Kobes's PPM repository (http://theoryx5.uwinnipeg.ca/ppms/ for latest ActivePerl with PPM

Re: Apache2::Request for ActivePerl Win32

2007-03-29 Thread Kelvin Wu
Yes just noticed, thanks for your info. On 3/29/07, Randy Kobes <[EMAIL PROTECTED]> wrote: On Thu, 29 Mar 2007, Issac Goldstand wrote: > Kelvin Wu wrote: >> >> Is there a Apache2::Request module for ActivePerl Win32 (v5.8.8 built >> for MSWin32-x86-multi-thread) and mod_perl 2? >> > Absolutely