I created a class to connect to SSRS using credentials
public class ReportServerCredentials : IReportServerCredentials
To implement it, I use:
ReportViewer1.ServerReport.ReportServerCredentials = new ReportServerCredentials("username", "password", "domain");
The problem is that in this case I need to set these credentials, and I am using my username and password, which is not a good idea. I want to connect using current userloggedin credentials or even make the ssrs think that the "everyone" is connecting to it, because I am not actually using credentials for producing reports, I just need to get connected.
Thanks
Use CredentialCache.DefaultNetworkCredentials instead
That will use the default credentials of the person running the report instead of yours.