2009-12-04 438 views
0

可以幫助擺脫這種錯誤在生產website.This錯誤,當我在報告單擊是顯示(水晶報表)水晶報表,VB.NET,ASP.NET

錯誤消息:

The maximum report processing jobs limit configured by your system administrator has been reached 
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: 


[COMException (0x80041016): The maximum report processing jobs limit configured by your system administrator has been reached.] 
    CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0 
    CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options) +87 
    CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +279 

[Exception: Load report failed.] 
    CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened() +341 
    CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob) +869 
    CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename) +73 
    Default3.Page_Init(Object sender, EventArgs e) +142 
    System.Web.UI.Control.OnInit(EventArgs e) +2069644 
    System.Web.UI.Page.OnInit(EventArgs e) +9 
    System.Web.UI.Control.InitRecursive(Control namingContainer) +321 
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +692 

回答

1

這通常發生在打開許多報表實例時。我們使用C#/ Crystal Reprots嘗試生成多線程報告時遇到了同樣的問題。您必須確保您關閉並正確處置完成後的報告。

+0

這是正確的答案。一段時間後,我發生了同樣的事情。您可以通過回收應用程序池來暫時修復錯誤,但您需要進入並關閉並處理該報告。 – 2010-01-15 04:03:18