Hello,
I'm having a problem with Telerik Reporting. All the reports in my project display properly when running on my development box, but once deployed to our test web server the following error is displayed in the report viewer,
If I repeatedly click a button to run the report it sometimes will eventually render after about 15 or 20 attempts, sometimes not. I occasionally will see a "Report is unavailable or session has expired." message as well. Also if the report does eventually appear none of the images in the report will show unless I right-click them and select "Show Image". In trying to troubleshoot this problem I have stripped down the report until it contained nothing but a single text box, no parameters, no data access, no code in the report at all and I still get the error.
I'm using Reporting version 6.1.12.611 and IE8. The pages use radTabStrip, radMultiPage and radPageView components, but I removed these to see if they might be the cause of the problem to no avail.
I'm calling the report using code like this,
Any idea the cause of this error and how to avoid it?
Thank you,
John
I'm having a problem with Telerik Reporting. All the reports in my project display properly when running on my development box, but once deployed to our test web server the following error is displayed in the report viewer,
Object reference not set to an instance of an object.
at Telerik.Reporting.Processing.ParametersManager`1..ctor(IReportDocument definition, ICollection`1 parameters)
at Telerik.ReportViewer.WebForms.ParametersPage.get_ParamsManager()
at Telerik.ReportViewer.WebForms.ParametersPage.CreateChildControls()
at System.Web.UI.Control.EnsureChildControls()
at Telerik.ReportViewer.WebForms.ParametersPage.OnPreLoad(EventArgs e)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
If I repeatedly click a button to run the report it sometimes will eventually render after about 15 or 20 attempts, sometimes not. I occasionally will see a "Report is unavailable or session has expired." message as well. Also if the report does eventually appear none of the images in the report will show unless I right-click them and select "Show Image". In trying to troubleshoot this problem I have stripped down the report until it contained nothing but a single text box, no parameters, no data access, no code in the report at all and I still get the error.
I'm using Reporting version 6.1.12.611 and IE8. The pages use radTabStrip, radMultiPage and radPageView components, but I removed these to see if they might be the cause of the problem to no avail.
I'm calling the report using code like this,
Telerik.Reporting.InstanceReportSource instanceReport =
new
Telerik.Reporting.InstanceReportSource();
instanceReport.ReportDocument =
new
Civil.CivilReports.CivilCourtWorksheet();
rvCourtSchedule.ReportSource = instanceReport;
Any idea the cause of this error and how to avoid it?
Thank you,
John