HTTP Error 500.30 - ANCM In-Process Start Failure - ASP.NET Project + Orchard Core

Viewed 28

I have an asp.net project that runs with Visual Studio.

It shows me this error when I run my project

HTTP Error 500.30 - ANCM In-Process Start Failure

I have followed every solutions that the internet provided such as changing the "InProcess" to "OutOfProcess" or even change the settings in IIS nor restart ISS but non of them is solving my issue.

May I know if anyone know how to solve this issues besides those solutions that I have mention earlier?

1 Answers

The following solution:

  1. First check whether the published file is correct and whether the version is selected correctly.

  2. Check if the application pool is correct.

  3. Check if the module is missing

  4. Check whether the program is normal, directly run the XXX.exe of the published file. Then visit http://localhost:5000, if it can be accessed, it is normal.

    enter image description here

  5. Check the web.config file and delete hostingModel="InProcess".

enter image description here

Hope it helps you.

Related