Crystal Reports Exception: The maximum report processing jobs limit configured by your system administrator has been reached

前端 未结 11 1725
猫巷女王i
猫巷女王i 2020-12-06 02:06

I\'m facing a very buggy issue, in ASP.NET application after viewing the same report many times simultaneously I got this exception:

The maximum repor

11条回答
  •  独厮守ぢ
    2020-12-06 02:35

    I would recommend moving your close/dispose/gc.collect code outside of that unload process. In other words:

    1. Load report
    2. Assign to Viewer Control
    3. Show Report in Viewer Control
    4. Close Viewer Control and Unload (completely)
    5. Then close/dispose/gc.collect outside of any viewer control code

    My guess is the viewer control is not completely closed when the report is being cleaned up.

    Crystal is a very memory intensive process and very finicky.

提交回复
热议问题