I created a report for a web application based on SQL Server 2005 reporting service. Somehow, I get this "Index was outside the bounds of the array" error once a while. I have no idea how to trouble shoot this problem. Please give me some advice. Thanks!
====================================
Index was out side the bounds of the array.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.IndexOutOfRangeException: Index was outside the bounds of the array.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[IndexOutOfRangeException: Index was outside the bounds of the array.]
System.Collections.Generic.List`1.Add(T item) +47
Microsoft.ReportingServices.Library.MemoryReportSnapshot.CreateReportChun(String name, report...
Microsoft.ReportingServices.ReportProcessing.DataChunkWriter.Flush() +900
Microsoft.ReportingServices.ReportProcessing.DataChunkWriter.FinalFlush() +10
Microsoft.ReportingServices.ReportProcessing.RuntimeReportDataSetNode.FirstPassCleanup(...
Microsoft.ReportingServices.ReportProcessing.RuntimeDataSetNode.FirstPass() +307
Microsoft.ReportingServices.ReportProcessing.RuntimeDataSetNode.FirstPassProcess(Boolean&...
Microsoft.ReportingServices.ReportProcessing.RuntimeReportDataSetNode.Process() +227
Microsoft.ReportingServices.ReportProcessing.RuntimeDataSetNode.ProcessConcurrent(Object ...
[ProcessingAbortedException: And error has occurred during report processing.]
Microsoft.ReportingServices.ReportProcessing.AbortHelper.ThrowAbortException(int32 report...
Microsoft.ReportingServices.ReportProcessing.ProcessingContext.CheckAndThrowIfAborted()...
Microsoft.ReportingServices.ReportProcessing.Merge.Process(ParameterInfoCollection parameter...
Microsoft.ReportingServices.ReportProcessing.ReportProcessing.ProcessReport(Report report,...
Microsoft.ReportingServices.ReportProcessing.ReportProcessing.ProcessReport(Report report,...
Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(IRenderingExten...
Microsoft.ReportingServices.ReportProcessing.ReportProcessing.RenderReport(IRenderingExten...
Microsoft.Reporting.LocalService.RenderWithDataCache(PreviewItemContext itemContext, Param...
Microsoft.Reporting.WebForms.LocalReport.InternalRender(String format, Boolean allowIntern...
[LocalProcessingException: An error occurred during local report processing.]
Microsoft.Reporting.WebForms.LocalReport.InternalRender(String format, Boolean allowInterr...
Microsoft.Reporting.WebForms.LocalReport.InternalRender(String format, Boolean allowInterr...
Microsoft.Reporting.WebForms.LocalReport.Render(String format, String deviceInfo, String&...
...
-----------------------------------------------------------------
Version Information: Microsoft.NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42
====================================
Henry