Subscribe to
Posts
Comments

I was trying out IIS7 the other day. When I was trying to set up a new site I got the following error message.

Error Summary
HTTP Error 500.24 - Internal Server Error


An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.
Detailed Error Information
Module ConfigurationValidationModule
Notification BeginRequest
Handler StaticFile
Error Code 0×80070032
Requested URL http://www.gadgetroute.com:80/default.htm
Physical Path C:\testweb\default.htm
Logon Method Not yet determined
Logon User Not yet determined
Most likely causes:

* system.web/identity@impersonate is set to true.

Things you can try:

* If the application supports it, disable client impersonation.
* If you are certain that it is OK to ignore this error, it can be disabled by setting system.webServer/validation@validateIntegratedModeConfiguration to false.
* Move this application to an application pool using Classic .NET mode - for example, %SystemRoot%\system32\inetsrv\appcmd set app “Default Web Site/” /applicationPool:”Classic .NET AppPool”

(You can set “Classic .NET AppPool” to the name of another application pool running in Classic managed pipeline mode)
Links and More Information If you are not sure or unable to use the first two options, then it is preferred that you move this application to Classic mode.

The solution it suggest is not straight forward enough. Simply put the error can be corrected by adding the following bold line in the web.config file

<configuration>
<system .webServer>
<validation validateIntegratedModeConfiguration=”false” />
</system>
</configuration>


Related Posts:

  • Join to Parametrized Table Function - Cross Apply and Outer Apply in SQL Server 2005
  • YMAPConfig is undefined on IE8
  • Recover Data Using Transaction Log
  • A Tip to Help with Tax Deduction
  • How to Prevent Innodb Data File Keep Growing


  • 1 Star2 Stars3 Stars4 Stars5 Stars (3 votes, average: 5 out of 5)
    Loading ... Loading ...

    RSS feed | Trackback URI

    2 Comments »

    Comment by Atul Khachane Subscribed to comments via email
    2011-03-24 02:56:34
    MyAvatars 0.2

    hey it worked like a charm. great share :)

     
    2011-05-13 01:49:01
    MyAvatars 0.2

    Everything is right instead of
    please write

     
    Name (required)
    E-mail (required - never shown publicly)
    URI
    Subscribe to comments via email
    Your Comment (smaller size | larger size)
    You may use <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> in your comment.