ASP.Net error: “The identity of application pool is invalid”

前端 未结 16 1508
青春惊慌失措
青春惊慌失措 2021-02-02 06:27

My ASP.Net web service cannot run because the application pool is unable to start due to the identity crisis it\'s experiencing.

The user I\'m using in the app pool is a

16条回答
  •  再見小時候
    2021-02-02 07:08

    What's happening is you are likely running your application inside a pool that is running applications using a different version of the .NET framework. Make sure that all your applications inside that pool are running the same version. If those apps must run under a different version than this one, create a new pool and add your app to it.

提交回复
热议问题