On Tue, 5 Dec 2006 19:04:30 -0500, "Daniel Bacon"
<Daniel.Bacon sas.com>
wrote:
>
>I've tried uninstalling Perl build
638/reboot/reinstall/reboot and re-registering perlse.dll
with no luck. This is a production box and I'm told NO to
reinstalling IIS. It doesn't appear that any patches have
been installed prior to this problem. I did turn off the
friendly HTTP error option and I'm getting this error:
>PerlScript Error error '80004005'
>(in cleanup) Can't call method "Item" on an
undefined value
>
>The line of code it fails on is:
>$testvar = $Request->QueryString('test')->Item();
That means that QueryString('test') did not return an
object. The error
message indicates that this happens during the destruction
of the Perl
interpreter, so the $Request object may be no longer valid.
Are you executing that code in a DESTROY method?
Cheers,
-Jan
>Doing several searches on this error only points me to
re-install or upgrade MDAC which I've already tried. This
is a nightmare! I guess I'm forced to accept converting
this to CGI. Or maybe the smart bet is to re-write this in
JavaScript. Thank you all very much for the help!
>
>-Dan
>_______________________________________________
>Perl-Win32-Web mailing list
>Perl-Win32-Web listserv.ActiveState.com
>To unsubscribe: http:/
/listserv.ActiveState.com/mailman/mysubs
_______________________________________________
Perl-Win32-Web mailing list
Perl-Win32-Web listserv.ActiveState.com
To unsubscribe: http:/
/listserv.ActiveState.com/mailman/mysubs
|