“匿名”的麻烦和“谈判,NTLM” IIS7.5中的身份验证
我已将以下配置部分添加到我的 web.config 文件中
<security>
<authentication>
<anonymousAuthentication enabled="true" />
<windowsAuthentication enabled="true" />
</authentication>
</security>
但是当我调用 *.asmx Web 服务时,我仍然收到以下错误:
HTTP 请求未经客户端身份验证方案“匿名”的授权。从服务器收到的身份验证标头是“Negotiate,NTLM”。
我使用的是IIS7.5 ASP.NET集成模式。
有什么线索吗?我刚刚发现 IIS Authenticatino 很差而且不稳定。
谢谢!
I have added the following configuration section to my web.config file
<security>
<authentication>
<anonymousAuthentication enabled="true" />
<windowsAuthentication enabled="true" />
</authentication>
</security>
But when I call the *.asmx web service, I still got the following error:
The HTTP request is unauthorized with client authentication scheme 'Anonymous'. The authentication header received from the server was 'Negotiate,NTLM'.
I am using the IIS7.5 ASP.NET integrated mode.
Any clues? I just found the IIS Authenticatino is very poor and unstable.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,除了在 IIS 中启用匿名身份验证之外,我们还需要向目标文件夹授予 NTFS 权限,以实现匿名身份验证身份验证。
Windows 身份验证发生在 IIS 和 NTFS 文件系统中。我总是忘记后一个。我会砍掉我的假脑。
It turns out that we need to grant NTFS permission to target folder for the Anonymous Authentication Authenticated As identity, besides enable Anonymous Authentication in IIS.
Windows Authentication happens in both IIS and NTFS file system. I always forget the latter one. I will cut my dummy brain.