This is a discussion on Crystal Reports for VS .NET Frequently Asked Questions within the C# Programming forums, part of the Software Development category; Hi All, Maximum Processing jobs limit error message..Please help!!! I'm using VB.NET 2003 and SQL Server 2000 ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi All, Maximum Processing jobs limit error message..Please help!!! I'm using VB.NET 2003 and SQL Server 2000 with Crystal Report XI. My clients when constantly will get this error message, System.Runtime.Interop.Services.COMException (0x80041016): The maximum report processing jobs limit configured by your system administrator has been reached at CrystalDecisions.ReportAppServer.ClientDoc.ReportC lientDocumentClass.Open ..... After this message, they cannot print any report that is called from Crystal. Anyone happen to encounter this error and solved this issue? Please help...Urgently to resolve this issue. Thanx in Advance
__________________ M.Ramesh Kumar |
| Sponsored Links |
| |||
| hi Ramesh, This has happened to me and here is how I fixed it. There are actually two different things that you could do, or even do both. 1 - Increase the limit of allowable reports by editing this registry key. Be careful how high you raise this. The higher the number, the more potential memory will be used. HKEY_LOCAL_MACHINE;SOFTWARE;Crystal Decisions;11.xx;Report Application Server;InprocServer;PrintJobLimit(default 75) 2 - Close the report connection when the user exits the page by using ReportDocument.Close() in a Page_Unload event. More info about this can be found on the MSDN site at: Use the Close() Method to free up the report good luck! |
| |||
| hi sundaram, if we keep the browser open and keep executing the same report with different parameters the close event does not seem to trigger and we still fail. any suggestions. thnx in advance..
__________________ M.Ramesh Kumar |
| |||
| HI, I have done all the Dispose, Changed the Registery and even checking for an existing report. How can I reset to release the Memory so I can get the reports working again without a reboot?
__________________ Sathish Kumar.R ![]() Knowledge is meant to SHARE |
| |||
| hi I did like this..solved my problem Code: ReportDocument rptDoc = (ReportDocument)Session["rptDoc"];
if (rptDoc == null)
{
rptDoc = new ReportDocument();
}
else
{
rptDoc .Close();
}
///write your code here. Code: Session["rptDoc"] = rptDoc ;
__________________ J.Saravanan |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| .Net3.0 framework Frequently Asked Questions | Mramesh | ASP and ASP.NET Programming | 0 | 03-18-2008 10:07 PM |
| C#.Net, ASP.Net Data Grid Frequently Asked Questions | a.deeban | C# Programming | 51 | 02-27-2008 08:49 AM |
| crystal reports | dips | ASP and ASP.NET Programming | 0 | 10-07-2007 06:00 AM |
| Object reference not set to an instance of an object for crystal reports in .net | KiruthikaSambandam | Database Support | 1 | 08-03-2007 03:26 AM |
| Crystal Report in Vb.net | ewriter | VB.NET Programming | 1 | 04-24-2007 08:01 AM |