DirectoryServicesCOMException 80072020从IIS 7.5网站运行

2019-07-02 15:01发布

我有麻烦追捕那里尝试获取用户组给定用户不时的ASP.NET 4应用程序失败的问题。 与此应用程序相关联的应用程序池设置ApplicationPoolIdentity下运行。

异常信息

System.DirectoryServices.DirectoryServicesCOMException
HRESULT: 80072020
Message: An operations error occurred.
Extended Message: 000004DC: LdapErr: DSID-0C0906E8, comment: In order to perform this operation a successful bind must be completed on the connection., data 0, v1db1

堆栈跟踪

    System.DirectoryServices.DirectoryEntry.Bind(Boolean) 
    System.DirectoryServices.DirectoryEntry.Bind() 
    System.DirectoryServices.DirectoryEntry.get_AdsObject() 
    System.DirectoryServices.DirectorySearcher.FindAll(Boolean) 
    System.DirectoryServices.DirectorySearcher.FindOne() 

95%的时间-99%,此功能工作正常,但不时,它只是开始出现问题。 当我更改应用程序池使用本地系统或网络服务,它开始工作。 当我变回ApplicationPoolIdentity它开始再次失败。 获得本站ApplicationPoolIdentity再次合作的唯一方法是重新启动服务器。

我能找到一个类似的问题在这里 ,但分辨率是重新启动为好。 我想找到改变应用程序池的身份更加持久的解决方案短。

Answer 1:

虽然重启将暂时解决这个问题,有一个微软的修补程序KB2545850 ,提供了一个永久性的修复这个问题。



文章来源: DirectoryServicesCOMException 80072020 From IIS 7.5 Site Running Under ApplicationPoolIdentity