Bineesh Viswanath

Bineesh Viswanath

  • 1.3k
  • 424
  • 42.9k

Web Application not able to run in IIS 10.0

Jun 1 2024 1:21 PM

When I try to run a .net core web application in my IIS 10.0, its not able to run. The default website is working fine and another application without database connection is also working.  below is the web.config file

<system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath=".\QueuingSystem.exe" arguments=".\QueuingSystem.Mvc.dll" stdoutLogEnabled="true" stdoutLogFile=".\Logs\stdout" hostingModel="inprocess" />
    </system.webServer>
  </location>
  <system.webServer>

this is the error getting


Answers (10)