Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've just tried to deploy my first web application to IIS on my Windows 7 Home Premium notebook. After creating the application, I had to change to the Classic App Pool, then set that pool for framework 4.0. Now I get the following error:

HTTP Error 404.17 - Not Found The requested content appears to be script and will not be served by the static file handler.

The requested URL is http://localhost:80/pvmms/default.aspx

I'm afraid extensive Googling has yielded nothing clear or definite enough for me to work with and as usual I've turned to the experts.

EDIT: I suspect this is because there are no framework 4.0 handler mappings for .aspx files. However, aspnet_regiis even gives my admin user the finger and says I need admin rights to run it.

EDIT #2: I registered all the frameworks (2 & 4, 32 and 64) and all now works. I found this by manually adding a script map for .aspx to aspnet_isapi and voila. I don't understand why the installation of the framework doesn't do this, unless my memory fails me and I only enabled IIS after installing VS.

share|improve this question

12 Answers

up vote 28 down vote accepted

Maybe too late now, but more often than not you need to run

aspnet_regiis.exe -i  

after installing asp.net. Maybe I would do it anyway now.

share|improve this answer
Yeah, figured that, thanks. – ProfK Sep 21 '10 at 20:00
3  
From msdn.microsoft.com/en-us/library/k6h9cz8h.aspx: aspnet_regiis -i – kishore Dec 23 '10 at 0:28
1  
There are two IIS Registration Tools that ship with the .NET Framework; one for standard systems and one for 64-bit system. The tool for 64-bit systems in located in the Framework64 directory of the Microsoft.NET directory inside the Windows folder; for example C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727 would contain the IIS Registration Tool. – Matthew Lock May 9 at 0:03

In addition to above, if you need WCF support, you might need to run this:

c:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe -i

Replace v3.0 to whatever your current framework version is.

share|improve this answer
Worked for me, thanks. – Mantisimo Aug 23 '11 at 11:08
This worked for me. – Nathan Jan 27 '12 at 21:11
Note to others, I think on webapps that use 4.0 app pool, you'll need to run aspnet_regiis again – Tim Gabrhel Aug 22 '12 at 14:45
Thank you so much. This exact issue was driving me crazy until I found this post. – Sukasa Feb 10 at 8:38
I have no idea what I'm doing :| but it works :) – marcos.borunda May 8 at 22:09
show 1 more comment

If you are using iis 7.5.

Just go to IIS Manager, open your website properties.

You will see 'Handler Mappings' section there, just go to that section and Search for 'staticFile'.

Most probably its a last file in the list.

Then Right Click on it and Select 'Revert To Parent'.

I have wasted so many hours while i have faced this first time, anyways this will solve your problem.

share|improve this answer
Are you providing a general solution or something that worked just for you?! – KeyBrd Basher Oct 26 '12 at 5:57
Worked for me too.. thanks! – Hitesh Riziya Jan 1 at 5:35
1  
As answered by Adi: this commando does just all that: c:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation\ServiceModelReg.exe -i – JDC Feb 25 at 9:55

alt text

should check out this option i suppose

share|improve this answer
1  
That just sets whether static content can be served or not. My problem is that script requests are being mapped to static content. If I turn it off, IIS doesn't even attempt to server the page, just giving me a blank. – ProfK Sep 21 '10 at 17:11

Register asp.net again....will solve the issue.
enter image description here

Go to Visual Studio Command Prompt,
And register asp.net as windows\microsoft.net\Framework[.Net version num]\aspnet_regiis.exe -i

share|improve this answer

There is a chance that application pool created for you application by default is version 2. So although you see a handler for .svc extension in the list it does not work and treat it as static file. All you need is to open application pool properties and switch it to version 4.

share|improve this answer

I had the same problem. When I added Static content feaute for IIS, It works fine.

share|improve this answer

I know this is an old question, but I've just had this with a 3.5 application on my rebuilt Windows 8 machine and I was still getting this after aspnet_regiis -iru and it turned out the be ASP.NET 3.5 wasn't ticked within Application Development Features (not enough reputation to post an image).

share|improve this answer
This worked for me on Windows 8 – frankhoffy 3 hours ago

I had this same issue on a windows 8 machine I am setting up. I had installed vs2012 before vs2010, which installs .NET framework 4.5. I have my app pools running in 4.0. I made sure I had aspnet registered for 4.0 using aspnet_regiis -i. That still didn't do the trick. Then I opened up the Windows Features and noticed that 4.5 added a set called ".NET Framework 4.5 Advanced Services". I enabled the WCF Service node and its children and then my svc endpoint operated correctly. Hope this helps folks who are making the move to Windows 8.

share|improve this answer
Server 2012, IIS8 here also, thanks for the pointer you got me going in the right direction. For those interested, I required turning on Application Server role as well as Web Server Role. I found the info I needed here: msdn.microsoft.com/en-us/library/hh167503(v=nav.70).aspx – John May 15 at 5:21

Just another possible solution I found having the same error message.

When trying to setup a .NET 4.0 web application to a new applicition pool I was receiving this strange error telling me it was trying to process my aspx file with the static file handler, which didn't make sense.

For some reason the ISAPI for .NET 4.0 was set to disabled in the ISAPI and CGI Restrictions area of the server level in the IIS manager. Setting it to enabled was all that was required, however the IIS 7.5 manager is so convoluted and hard to follow it took me a long time to figure this out.

I'm guessing that since it was a 4.0 Application that could not be processed by the 4.0 Engine the static file handler was being used by default.

share|improve this answer

I had this issue with Windows Server 2012 with ASP .NET 4.5 you can't use aspnet_regiis.exe, and just have to install ASP .NET 4.5 via the Add Roles and Features Wizard:

enter image description here

share|improve this answer

I stumbled upon this question when I ran into the same issue. The root cause of my issue was an incorrectly-configured app pool. It was set for 2.0 inadvertently, when it needed to be set to 4.0. The answer at the following link helped me uncover this issue: http://forums.iis.net/t/1160143.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.