开发者

ASP.NET get windows username outside of page

I have an Existing ASP.NET reporting application using windows authentication. A lot of the report generation code is in separate classes and has a core error logger that I didn't write, this error logger I believe was built for windows apps as it uses WindowsIdentity.GetCurrent().Name. In the case of ASP.NET I believe this will return the account running the ASP.NET pages at the server.

I believe using User.Identity.Name on the pages would be the correct way to do this but it is not available from within the report generation classes only on the page. Is there a way to obtain it withing the error logger class without passing it as an extra parameter.

There are hundreds of report classes so I dread to have to go through and add a parame开发者_高级运维ter to every one.


If you can use impersonation in your web.config:

....
<authentication mode="Windows"/>
<identity impersonate="true"/>
....

your report classes will get the right user.

If your reporting classes can reference the System.Web assembly and you are willing modify the code, you could also do:

HttpContext.Current.User.Identity.Name

but make sure the caller comes from an ASP.NET request or it will throw a nullref.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜