IIS 5.0
Windows 2000 sp3 and sp4
Static content serves fine, asps fail, even Hello.asp
Had some feedback in a thread yesterday, here is the
actual error that gets posted to the log:
The server failed to load application '/LM/W3SVC/1/ROOT'.
The error was 'No such interface supported'.
I scanned the knowledgebase and no real answer was found. 15 7639
See similar thread(s) posted today.
Ray at work
"Billy" <an*******@discussions.microsoft.com> wrote in message
news:00****************************@phx.gbl... IIS 5.0 Windows 2000 sp3 and sp4
Static content serves fine, asps fail, even Hello.asp
Had some feedback in a thread yesterday, here is the actual error that gets posted to the log:
The server failed to load application '/LM/W3SVC/1/ROOT'. The error was 'No such interface supported'.
I scanned the knowledgebase and no real answer was found. http://www.aspfaq.com/2226
--
Aaron Bertrand
SQL Server MVP http://www.aspfaq.com/
"Billy" <an*******@discussions.microsoft.com> wrote in message
news:00****************************@phx.gbl... IIS 5.0 Windows 2000 sp3 and sp4
Static content serves fine, asps fail, even Hello.asp
Had some feedback in a thread yesterday, here is the actual error that gets posted to the log:
The server failed to load application '/LM/W3SVC/1/ROOT'. The error was 'No such interface supported'.
I scanned the knowledgebase and no real answer was found.
Did that, none of them are specific...i have enabled
script and exe, installed server extentions...nothing -----Original Message----- See similar thread(s) posted today.
Ray at work
"Billy" <an*******@discussions.microsoft.com> wrote in
messagenews:00****************************@phx.gbl... IIS 5.0 Windows 2000 sp3 and sp4
Static content serves fine, asps fail, even Hello.asp
Had some feedback in a thread yesterday, here is the actual error that gets posted to the log:
The server failed to load
application '/LM/W3SVC/1/ROOT'. The error was 'No such interface supported'.
I scanned the knowledgebase and no real answer was
found.
.
Sounds like script blocking is enabled in your antivirus software
--
David D Cowell
Wildcat Computers, Inc. http://www.wildcatcomputers.net
800-686-4685
"Billy" <an*******@discussions.microsoft.com> wrote in message
news:05****************************@phx.gbl... Did that, none of them are specific...i have enabled script and exe, installed server extentions...nothing
-----Original Message----- See similar thread(s) posted today.
Ray at work
"Billy" <an*******@discussions.microsoft.com> wrote in messagenews:00****************************@phx.gbl... IIS 5.0 Windows 2000 sp3 and sp4
Static content serves fine, asps fail, even Hello.asp
Had some feedback in a thread yesterday, here is the actual error that gets posted to the log:
The server failed to load application '/LM/W3SVC/1/ROOT'. The error was 'No such interface supported'.
I scanned the knowledgebase and no real answer was found.
.
> Static content serves fine, asps fail
What on earth does "fail" mean?
--
Aaron Bertrand
SQL Server MVP http://www.aspfaq.com/
> Sounds like script blocking is enabled in your antivirus software
This would cause a script timeout, and only in pages that use
FileSystemObject or other components deemed dangerous by the norton virus.
I don't think this would cause failure (though we still don't know what
failure means) or timeout of a simple response.write "hello" page.
--
Aaron Bertrand
SQL Server MVP http://www.aspfaq.com/
set application protection to Low
"Billy" <an*******@discussions.microsoft.com> wrote in message
news:00****************************@phx.gbl... IIS 5.0 Windows 2000 sp3 and sp4
Static content serves fine, asps fail, even Hello.asp
Had some feedback in a thread yesterday, here is the actual error that gets posted to the log:
The server failed to load application '/LM/W3SVC/1/ROOT'. The error was 'No such interface supported'.
I scanned the knowledgebase and no real answer was found.
Whoa, too many meanings for this one. I like this one the best: "There
shall not fail thee a man on the throne."
--
Aaron Bertrand
SQL Server MVP http://www.aspfaq.com/
"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> wrote in message
news:el*************@TK2MSFTNGP11.phx.gbl... http://dictionary.com/search?q=fail
Actually it doesn't timeout. You have to be able to start a script for it to
timeout. If I enable script blocking on my XP Pro machine running IIS and
call up an asp page stored there, in a browser on that machine, it just sets
there indefinitly waiting for the script to run. As far as Norton (installed
on that machine) is concerned any .asp page is a dangerous script. If you
are talking about Norton on a different machine accessing that web server,
then any client side scripts wouldn't run, but hello.asp or any other .asp
pge that didn't contain any client side scripts should run ok.
--
David D Cowell
Wildcat Computers, Inc. http://www.wildcatcomputers.net
800-686-4685
"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:ej**************@TK2MSFTNGP09.phx.gbl... Sounds like script blocking is enabled in your antivirus software
This would cause a script timeout, and only in pages that use FileSystemObject or other components deemed dangerous by the norton virus. I don't think this would cause failure (though we still don't know what failure means) or timeout of a simple response.write "hello" page.
-- Aaron Bertrand SQL Server MVP http://www.aspfaq.com/
> Actually it doesn't timeout. You have to be able to start a script for it
to timeout.
And how does hitting an ASP page not meet the criteria for "start a script"?
call up an asp page stored there, in a browser on that machine, it just
sets there indefinitly waiting for the script to run.
The browser will eventually give up, and time out. And my point still
stands that Norton doesn't block ASP pages in general, but rather only those
parts of the script that call things like Scripting.FileSystemObject. This
is a very popular FAQ article, so much so that I don't even have to look it
up to know the number. http://www.aspfaq.com/2180
--
Aaron Bertrand
SQL Server MVP http://www.aspfaq.com/
Here again, if you are running Norton Antivirus with script blocking
enabled, on the same machine(server in my case running XP Pro) that IIS is
running on, it will prevent asp from running. If Norton Antivirus with
script blocking is enabled in a workstation accessing IIS on a different
machine(with script blocking disabled) it will load the resulting HTML
generated by the script just fine, because the script is executed on the
server not the workstation. If OP is trying to work on a development machine
(programming and viewing the web site on the same machine), and not a live
environment (client-server) then script blocking would prevent his asp from
executing. And yes the browser will finally timeout, but not a "script
timeout" , but because it did not get a response from the request it sent to
the server.
--
David D Cowell
Wildcat Computers, Inc. http://www.wildcatcomputers.net
800-686-4685
"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:%2******************@tk2msftngp13.phx.gbl... Actually it doesn't timeout. You have to be able to start a script for
it to timeout. And how does hitting an ASP page not meet the criteria for "start a
script"? call up an asp page stored there, in a browser on that machine, it just sets there indefinitly waiting for the script to run.
The browser will eventually give up, and time out. And my point still stands that Norton doesn't block ASP pages in general, but rather only
those parts of the script that call things like Scripting.FileSystemObject.
This is a very popular FAQ article, so much so that I don't even have to look
it up to know the number. http://www.aspfaq.com/2180
-- Aaron Bertrand SQL Server MVP http://www.aspfaq.com/
> Here again, if you are running Norton Antivirus with script blocking enabled, on the same machine(server in my case running XP Pro) that IIS is running on, it will prevent asp from running.
Once again. THIS IS NOT TRUE. Script blocking will only catch scripts that
try to instantiate objects like Scripting.FileSystemObject.
executing. And yes the browser will finally timeout, but not a "script timeout"
Now you're just being overly pedantic. I did not mean, explicitly, ASP
0113 - Server.ScriptTimeout exceeded. I meant that the browser would spin
until it gave up.
Is spin an okay word to use there? Or would you like something more
explicit?
--
Aaron Bertrand
SQL Server MVP http://www.aspfaq.com/
Well I'm not trying to flame you or be narrow minded :-) but, I'm setting
here running XP Pro/IIS5.1/Norton AV 2003 on this machine. I use it for
development and testing. If I turn on script blocking and try to access http://localhost/hello.asp it will not run the script. The browser will
timeout. If I disable script blocking it runs the script just fine. I read
the faq and agree that on a client PC, it will only effect client side
executions. My point was if the origional poster was testing on a similar
setup it will block asp execution.
--
David D Cowell
Wildcat Computers, Inc. http://www.wildcatcomputers.net
800-686-4685
"Aaron Bertrand - MVP" <aa***@TRASHaspfaq.com> wrote in message
news:u$**************@TK2MSFTNGP09.phx.gbl... Here again, if you are running Norton Antivirus with script blocking enabled, on the same machine(server in my case running XP Pro) that IIS
is running on, it will prevent asp from running. Once again. THIS IS NOT TRUE. Script blocking will only catch scripts
that try to instantiate objects like Scripting.FileSystemObject.
executing. And yes the browser will finally timeout, but not a "script timeout"
Now you're just being overly pedantic. I did not mean, explicitly, ASP 0113 - Server.ScriptTimeout exceeded. I meant that the browser would spin until it gave up.
Is spin an okay word to use there? Or would you like something more explicit?
-- Aaron Bertrand SQL Server MVP http://www.aspfaq.com/
> Well I'm not trying to flame you or be narrow minded :-) but, I'm setting here running XP Pro/IIS5.1/Norton AV 2003 on this machine. I use it for development and testing. If I turn on script blocking and try to access http://localhost/hello.asp it will not run the script.
Well, I can't reproduce. I can only get Norton to interfere when the script
has Scripting.FileSystemObject (e.g. CreateTextFile).
--
Aaron Bertrand
SQL Server MVP http://www.aspfaq.com/ This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Billy |
last post by:
I'm having a issue with one box where it will not serve
any ASP pages, even when i browse them from the IIS
manager directly. Is there something I should look at
to 'enable' serving asp pages?...
|
by: Rene |
last post by:
Hi,
I'm spend many hour to fix this problem, read many articles about it but no
article gave a solution.
To isolate the problem I've created in IIS6 (WServer2003) a virtual
directory test to...
|
by: Ricky K. Rasmussen |
last post by:
Hi NG,
Is it possible in any way to serve an ASP.NET server control when the
request is beeing processed by a custom request handler?
In my case I use my own request handler to serve elements...
|
by: Carl Gilbert |
last post by:
Hi
I have a few asp pages that I plan to burn to a CD so the pages can be
navigated without an internet connection. I have just realised that the
pages might not run that well, if at all, as...
|
by: Pepper |
last post by:
I may be alone in this feeling, but I am a long time asp developer and
after a few years of asp.net development still am not comfortable with
the new way of doing things. Asp.net just seems too...
|
by: Keith |
last post by:
I have an IIS 6.0 web server hosting an ASP.NET 2.0 web site. Help files for
the site are pure html. Is there some way to serve these html pages using
the same ASP.NET web site? If so, how do I...
|
by: Fred |
last post by:
how many concurrent users / hits per day can a typical asp.net web server
support?
the server will serve content similar to that of cnn.com / text and images
without video streaming
it will be...
|
by: =?Utf-8?B?TWlrZQ==?= |
last post by:
Hi. I have an ASP.NET 2.0 web application which contains an Images directory
with all website images. How can I prevent other websites from creating img
tags with the source as my images? I want...
|
by: ma |
last post by:
Hello,
I am new to IIS and ASP.NET. I wrote my first ASP.NET and I want to deploy
in to a system which has Vista Business and IIS7. I copied my files to the
target computer and created a virtual...
|
by: requeth |
last post by:
I'm trying to do the following, but when I have the code in for hte
HREF link I get a runtime error. How do I pass the link to the end
user?
<%
Dim a as string
Dim b as string
a =...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
|
by: Ricardo de Mila |
last post by:
Dear people, good afternoon...
I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control.
Than I need to discover what...
|
by: ezappsrUS |
last post by:
Hi,
I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
|
by: DizelArs |
last post by:
Hi all)
Faced with a problem, element.click() event doesn't work in Safari browser.
Tried various tricks like emulating touch event through a function:
let clickEvent = new Event('click', {...
|
by: F22F35 |
last post by:
I am a newbie to Access (most programming for that matter). I need help in creating an Access database that keeps the history of each user in a database. For example, a user might have lesson 1 sent...
| |