【发布时间】:2010-07-16 08:45:02
【问题描述】:
自从我们从 IIS 7.0 迁移到 IIS 7.5 后,Windows 身份验证不再适用于远程请求。如果我在网络服务器上打开网站,一切正常。
web.config:
<authentication mode="Windows" />
<identity impersonate="true" />
<authorization>
<deny users="?" />
<allow users="*" />
</authorization>
IIS 设置:
Authentication (enabled): ASP.NET Impersonation, Windows Authentication (all others are disabled)
ApplicationPool: Managed Pipeline Mode -> Classic, Identity -> ApplicationPoolIdentity
请求跟踪失败:
MODULE_SET_RESPONSE_ERROR_STATUS
ModuleName: WindowsAuthenticationModule
Notification: 2
HttpStatus: 401
HttpReason: Unauthorized
HttpSubStatus: 1
ErrorCode: 2148074254
ConfigExceptionInfo:
Notification: AUTHENTICATE_REQUEST
ErrorCode No credentials are available in the security package (0x8009030e)
有什么建议吗?
【问题讨论】:
标签: windows iis windows-authentication iis-7.5