[Apache::ASP] $Request-QueryString-('foo')-Item() support

2000-10-09 Thread joel w. reed
I'm trying to write an ASP app that runs under PerlScript and Apache::ASP. i've found that with ActivePerl 618 -- $Request-QueryString-('foo') return a reference to a Win32::OLE hash. to get a string from the hash you must write -- $Request-QueryString-('foo')-Item() or you must use

Re: [Apache::ASP] $Request-QueryString-('foo')-Item() support

2000-10-09 Thread Joshua Chamas
$Request-QueryString-('foo')-Item() isn't valid perl syntax, is it? Are you going for $Request-QueryString('foo')-Item() support here? There is already a Collection class that is used to emulate this kind of behavior, which can possibly be extended to meet this need. One of the behaviors

Re: [Apache::ASP] $Request-QueryString-('foo')-Item() support

2000-10-09 Thread Greg Williams
At 14:23 -0700 2000/10/09, Joshua Chamas wrote: $Request-QueryString-('foo')-Item() isn't valid perl syntax, is it? perl -c $Request-QueryString-('foo')-Item() __END__ - syntax OK ;-) .g -- Greg Williams, Cnation, (310) 228-6924 "Wow, no intel, no microsoft, sounds like a computer that

Re: [Apache::ASP] $Request-QueryString-('foo')-Item() support

2000-10-09 Thread Joshua Chamas
Greg Williams wrote: At 14:23 -0700 2000/10/09, Joshua Chamas wrote: $Request-QueryString-('foo')-Item() isn't valid perl syntax, is it? perl -c $Request-QueryString-('foo')-Item() __END__ - syntax OK When I execute $Request-Form-('test')-Item() on a real life code sample, even after

Re: [Apache::ASP] $Request-QueryString-('foo')-Item() support

2000-10-09 Thread joel w. reed
On Oct 09, [EMAIL PROTECTED] contorted a few electrons to say... Joshua $Request-QueryString-('foo')-Item() isn't valid perl syntax, Joshua is it? Are you going for $Request-QueryString('foo')-Item() Joshua support here? yes $Request-QueryString('foo')-Item() seems to be the way AP618 wants

Re: [Apache::ASP] $Request-QueryString-('foo')-Item() support

2000-10-09 Thread Joshua Chamas
So what you are saying is that either this: my $uid = $Request-QueryString('foo')-Item(); or this $Request-QueryString-Item('foo')-Item() works natively in PerlScript. I see, so with the CollectionItem Apache::ASP config, I will enable the latter to work too. The other

Re: [Apache::ASP] $Request-QueryString-('foo')-Item() support

2000-10-09 Thread Daniel Chetlin
On Mon, Oct 09, 2000 at 05:03:44PM -0700, Joshua Chamas wrote: When I execute $Request-Form-('test')-Item() on a real life code sample, even after building in support for $Request-Form('test')-Item(), I get this error: Not a CODE reference at (eval 14) line 10. I have seen this error