Hi
We have aspx page where is added Telerik ReportViewer element:
<telerik:ReportViewer ID="ReportViewer1" runat="server" Height="99%" Width="99%"></telerik:ReportViewer>
In cs file we set stuff to that report viewer:
Telerik.Reporting.UriReportSource uriReportSource = new Telerik.Reporting.UriReportSource();uriReportSource.Uri = urlParams["ReportFile"];bool ParametersAreaVisible = true;//... some url params handling and loop where inside param add is done this wayuriReportSource.Parameters.Add(new Telerik.Reporting.Parameter(key, urlParams[key]));//... url params handling endedReportViewer1.ReportSource = uriReportSource; ReportViewer1.ParametersAreaVisible = ParametersAreaVisible;
Problem is that from our own test environment we can run reports properly. Customer get vpn connection to our network and can run reports from same environment properly.
Customer has virtual server in azure cloud enviroment where currently is only allowed our and customer connections. From there we can run reports properly, but when customer try to use that page from their network, it will wait long (about minute) and get only toolbar of ReportViewer, no parameters area above that toolbar or any information about db connection problems or something else below.
Any idea where problem could be?
