Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTTP Error 404.3-Not Found in IIS 10

I use IIS version 10 and Windows 10 and VisualStudio 2015.

After I add WEB application to IIS site and open it I get error:

HTTP Error 404.3 - Not Found

The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.

I installed IIS sub components from:

Control Panel -> Programs and Features -> Turn Windows features on or off

As described in this post by Mekanik.

Here is screenshot of installed sub components:

enter image description here

But it didn't helped me and still I get the same error.

Any Idea why I keep getting this error above maybe it has something to do with version of IIS 10?

like image 794
Michael Avatar asked May 23 '16 14:05

Michael


2 Answers

I understand that this is an old issue but in case anyone else comes across it:

It is related to Handler mapping, you need the svc-integrated mapping for the site in question:

Handler mapping in question

In order to make sure this mapping appears you need to go to control panel -> turn windows features on or off -> .NET Framework 4.7 Advanced Services (or equiv .net ver) -> WCF Services -> HTTP Activation

Turn on Http Activation and refresh IIS. This should add the mapping and fix the error.

Http Activation Feature Location

like image 115
Thomas Avatar answered Nov 18 '22 15:11

Thomas


I had the same problem for a WCF web service. Fixed it as follows: Open - Turn Windows Features ON or OFF, then Enable HTTP Activation

like image 12
Marvin Avatar answered Nov 18 '22 14:11

Marvin