asp.net - IIS (There was an error while performing this operation) -


i receive (there error while performing operation) error referring web.config. follow below configuration:

  • os windows server 2012 r2 iis version 8.5.
  • url rewrite 2.1 module installed on machine.
  • iis_iusrs has full access directory.
  • application initialization module installed
  • .net clr version v4.0.30319 , managed pipeline mode integrated.
  • iis configuration below:

  • enter image description here

  • enter image description here
    web config below:
<?xml version="1.0" encoding="utf-8"?>     <configuration>       <system.webserver>         <handlers>           <add name="aspnetcore" path="*" verb="*" modules="aspnetcoremodule" resourcetype="unspecified" />         </handlers>         <aspnetcore processpath="dotnet" arguments=".\mes.dll" stdoutlogenabled="false" stdoutlogfile=".\logs\stdout" />       </system.webserver>     </configuration>     <!--projectguid: e8701310-485f-4f88-b7d0-1473d07238ac--> 

browsing page receive below message: enter image description here however, when remove

<aspnetcore processpath="dotnet" arguments=".\mes.dll" stdoutlogenabled="false" stdoutlogfile=".\logs\stdout" />  

from web.config don't receive (there error while performing operation) error below error: enter image description here

your support highly appreciated.

add , install asp.net core module on machine,

https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/aspnet-core-module?tabs=aspnetcore2x


Comments

Popular posts from this blog

ios - MKAnnotationView layer is not of expected type: MKLayer -

ZeroMQ on Windows, with Qt Creator -

unity3d - Unity SceneManager.LoadScene quits application -