I want to load my webapi in i...">

How to solve "HTTP Error 500.19 - Internal Server Error" "<delete name =" ExtensionlessUrlHandler-Integrated-4.0 "/">

I want to load my webapi in iis, but I get the following error enter image description here

 Config Source: 24: </modules> 25: <handlers> 26: <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> 

here is my webconfig file

  <handlers> <remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <remove name="OPTIONSVerbHandler" /> <remove name="TRACEVerbHandler" /> <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" /> </handlers> 

I am using windows 8.1. I installed all the features of IIS. my application pool enter image description here

How to solve this problem?

+6
source share
2 answers

There are two things to check that you have the appropriate .Net installed. The following configurations are also checked.

enter image description here

+19
source

You need to check these things out. if your site is hosted on Windows Server 2008, 2012 / R2 and 2016.

enter image description here

0
source

Source: https://habr.com/ru/post/975215/


All Articles