I\'m having a few problems using SSRS currently. I have an ASP.NET website that uses Windows Authentication. That works fine and I know the website current user is the currently
Instead of
return (WindowsIdentity)HttpContext.Current.User.Identity;
You could try
return WindowsIdentity.GetCurrent();