Is there any example of how I can use the ReportViewer control to display a remote report in my ASP.NET web application?
This code gives me a MissingEndpointException:
ReportParameter[] parm = new ReportParameter[1];
parm[0] = new ReportParameter("fund", "1");
ReportViewer1.ShowCredentialPrompts = false;
ReportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
ReportViewer1.ServerReport.ReportServerUrl = new System.Uri("http://url/Reports/");
&nbs ...
Go to the complete details ...