NTLM 和 Kerberos 之间 HttpContext 的差异
我们有一个网站当前使用带有 NTLM 的 Windows 身份验证。
在此解决方案中,我们有一些从 HttpContext 中读取用户名的代码。
我们现在正在考虑迁移到 Kerberos。
问题是:这会影响HttpContext中的用户名吗?
编辑
我们正在使用:
HttpContext.Current.Request.LogonUserIdentity.Name
We have a web site that currently uses windows authentication with NTLM.
In this solution we have some code that reads the user name out of the HttpContext.
We are now considering moving to Kerberos.
Question is: will this affect the user name in the HttpContext?
Edit
We are using:
HttpContext.Current.Request.LogonUserIdentity.Name
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是指 HttpContext.User - 我相信 Windows 身份验证是使用 kerberos 还是 NTLM 完成并不重要。 HttpContext.User 应继续返回 Windows 主体。
Are are you referring to HttpContext.User - I believe that it shouldn't matter whether windows authentication is done using kerberos or NTLM. HttpContext.User should continue to return windows principal.