如何查看正在使用什么帐户来访问 WCF 服务?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
结果将取决于您如何保护 WCF 服务、匿名、Windows 集成、基本、您是否使用模拟等。
一般来说,您可以使用以下命令检查当前进程的身份:
编辑:简单的 WCF 方法返回帐户
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