Patricio Muņoz wrote:
Hi,
I have the script

<%
 $mypath = "D:\Apache\Apache2\asp\aplicacion\videos";
 $fso = $Server->CreateObject("Scripting.FileSystemObject");
 $fls = $fso->GetFolder($Server->MapPath($mypath));

%>

when execute in the browser, appear the next error:

[Thu Dec 04 13:14:40 2003] [error] [asp] [-987443] [error] Can't locate
object method "lookup_uri" via package "Apache::RequestRec" at
D:/Perl/site/lib/Apache/ASP/Server.pm line 113. <--> ,
D:/Perl/site/lib/Apache/ASP.pm line 1516

where found documentation for
$Server->CreateObject("Scripting.FileSystemObject"); ?
in http://www.apache-asp.org I can't found example or detail information

I think the problem is in Apache::ASP, as you don't call it from your script. Tell Josh, that lookup_uri requires loading:


use Apache::SubRequest ();

You probably want to ask ASP questions at the asp list. http://www.apache-asp.org/support.html.

__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com


-- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html



Reply via email to