Context.User.Identity.Name 报告错误的用户
各位,
我的服务器上有一个 asmx Web 服务。该服务的应用程序使用 HTTPS 和基本身份验证。当它被调用时,我被迫使用域登录,但“Context.User.Identity.Name”返回本地用户!
因此,
登录
myDomain\myUserName
会导致
Context.User.Identity.Name = "localMachineName\myUserName"
有什么想法吗?
谢谢,
布雷特
Folks,
I have an asmx web service on a server. The application for the service uses HTTPS and basic authentication. When it is called, and I am forced to log in with the domain, but "Context.User.Identity.Name" return the local user!
so
a login of
myDomain\myUserName
results in
Context.User.Identity.Name = "localMachineName\myUserName"
Any Ideas?
Thanks,
Brett
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否有 web.config 设置来偶然使用 Windows 身份验证?如果是这样,我相信它会给您本地用户主体,而不是您进行身份验证的域用户。
解决方法应该是更改您的 web.config 以使用表单身份验证。
希望这有帮助。
Do you have the web.config setup to use windows authentication by chance? If so I believe it will give you the local user principal instead of the domain user you authenticated with.
The fix should be to change your web.config to use forms authentication.
Hope this helps.