A process serving application pool 'Classic .NET AppPool' suffered a fatal communication error with the Windows Process Activation Service

后端 未结 6 1360
没有蜡笔的小新
没有蜡笔的小新 2020-12-23 20:27

I am running an ASP.NET 3.5 web application on IIS 7 on Windows Server 2008.

I received the following error earlier this afternoon:

HTTP Error 503. The

6条回答
  •  不思量自难忘°
    2020-12-23 20:47

    I just tracked down and fixed the same nasty problem. A couple things that could cause the problem:

    • A Server.Transfer() loop
    • Calling CurrentThread.Abort() in certain scenarios.. (Like after a Server.Transfer()!)

    Fixing those things is what fixed it for us.

提交回复
热议问题