User946142141 posted
I connect to report server from web application to report server using the below code
string ReportPath = cmbreport.Value.ToString();
ReportViewer2.ProcessingMode = ProcessingMode.Remote;
ServerReport serverReport = ReportViewer2.ServerReport;
serverReport.ReportServerUrl = new Uri("http://sobana/reportserver_sqlexpress");
serverReport.ReportPath = "/" + ReportPath;
Iam getting the report also.But iam not using Credentials(username and password).
Is it proper way??