Context.User.Identity.Name 报告错误的用户

发布于 2024-11-18 00:21:12 字数 288 浏览 2 评论 0原文

各位,

我的服务器上有一个 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 技术交流群。

扫码二维码加入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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文