如何查看正在使用什么帐户来访问 WCF 服务?

发布于 2024-10-04 03:04:06 字数 99 浏览 3 评论 0原文

我在 IIS 上托管了一个 WCF 服务,我正在通过 wcf servcie 在服务器上写入一个文件,我只是想确定使用什么凭据来访问服务。

我如何检查正在使用哪个帐户?

I have a WCF service hosted on IIS, and i am writing a file on the server through wcf servcie and i just wanted to make sure what credintials is using to access the services.

how do i check to see what account is using?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遗弃M 2024-10-11 03:04:06

结果将取决于您如何保护 WCF 服务、匿名、Windows 集成、基本、您是否使用模拟等。

一般来说,您可以使用以下命令检查当前进程的身份:

编辑:简单的 WCF 方法返回帐户

public string GetUserName() {
  return System.Security.Principal.WindowsIdentity.GetCurrent().Name;
}

The results will depend on how you've secured your WCF service, anonymous, windows integrated, basic, are you using impersonation, etc.

In general though you can check the identity of the current process with the following:

EDIT: simple WCF method to return the account

public string GetUserName() {
  return System.Security.Principal.WindowsIdentity.GetCurrent().Name;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文