I am trying to render SSRS Report located on my remote report server in my ASP.NET MVC 4 app through reporting services web service programmatically.
how can i send the server (windows/domain credentials) at runtime?
tried below but no success.
ReportingService2010 service = new ReportingService();
service.Credentials = new System.Net.NetworkCredential("username", "password");
service.Url = "http://MyReportServer/ReportServer/";