Click here to Skip to main content
15,881,852 members
Please Sign up or sign in to vote.
4.00/5 (2 votes)
See more:
Got HTTP Error 500.23 - Internal Server Error, Error Code 0x80070032
My application in IIS 7's, the Default Site
Application Pool: DefaultAppPool (.Net FW: V4.0, Managed Pipeline: Integrated, Identity: NetworkService)
Then I tried:
Application Pool: Classic .NET AppPool (.Net FW: V4.0, Managed Pipeline: Integrated, Identity: ApplicationPoolIdentity)
Meanwhile, in Web.config (refer to http://stackoverflow.com/questions/14925383/http-error-500-23-internal-server-error-local-iis-web-serve ), add
HTML
<system.webServer>
  <validation validateIntegratedModeConfiguration="false"/>
</system.webServer>

The error is still the same. Wish to get some hints for the solution. Appreciate!
Posted

Please check below link also.

Note : You have to restart the application pool after the below changes.

HTTP Error 500.23
 
Share this answer
 
This error is generally occurs by ValidateConfigurationModule when it detects that system.webServer/validation validateIntegratedModeConfiguration equal true and there is some configuration in httpHandlers or httpModules section which is not picked in integratedMode or system.web/identity@impersonate is set to true which is also not effective in integratedMode. You can follow the suggestions in the error message to migrate the configuration so that your managed modules/handlers work in integrated and classic mode both.
 
Share this answer
 
Changed IIS DefaultAppPool's settings as follows:
Net FW: V4.0
managed Pipeline: Integrated
Identity: ApplicationPoolIdentity
Also in web.config, add
<pre lang="HTML">
  <system.webserver>
    <modules runallmanagedmodulesforallrequests="false" />
    <validation validateintegratedmodeconfiguration="false" />
  </system.webserver>

The Error 500.23 was gone for one (Asp Web Application) of deployed projects, but for another project (Asp Dile System) in the same IIS folder, got Configuration Error at
<pre lang="HTML">
<authentication mode="Windows" />

I am continuing the debugging on that in this project. Thanks to the reviewers, esp. those who provided comments or solutions feedbacks.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900