SSRS WindowsIdentity.GetCurrent() 给我 NT AUTHORITY\NETWORK SERVICE

发布于 2024-09-06 18:36:30 字数 362 浏览 4 评论 0原文

我在 SSRS 报告中有自定义代码,需要获取当前用户。例如,

Dim myPrincipal As New System.Security.Principal.WindowsPrincipal   
   (System.Security.Principal.WindowsIdentity.GetCurrent())

我希望 GetCurrent() 返回正在访问报告的用户的主体;然而,它给了我“NT AUTHORITY\NETWORK SERVICE”的主体。有谁知道如何让 ReportServer 作为运行报表的用户运行?我检查了两个 web.config,它们都指示 Windows 身份验证和 Impersonate=True。

I have custom code inside of a SSRS report that needs to get the current user. e.g.

Dim myPrincipal As New System.Security.Principal.WindowsPrincipal   
   (System.Security.Principal.WindowsIdentity.GetCurrent())

I would have expected GetCurrent() to return the principal of the user that was accessing the report; however, it gives me the principal of "NT AUTHORITY\NETWORK SERVICE". Does anyone know how to get ReportServer to run as the user running the report? I checked both web.config, and they both indicate Windows Authentication and Impersonate=True.

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

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

发布评论

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

评论(1

氛圍 2024-09-13 18:36:30

好吧,我明白了。我只是使用

System.Threading.Thread.CurrentPrincipal.Identity 

而不是

WindowsIdentity.GetCurrent()

当我在本地预览报告时这不起作用,

Thread.CurrentPrincipal.Identity.Name //returns an empty string when previewing locally

但在部署到服务器后它工作正常。

Ok, I figured it out. I just used

System.Threading.Thread.CurrentPrincipal.Identity 

instead of

WindowsIdentity.GetCurrent()

This doesn't work when I'm am previewing the report locally i.e.

Thread.CurrentPrincipal.Identity.Name //returns an empty string when previewing locally

but it works fine after I deploy to a server.

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