I attached a couple methods from our app, in 2 methods you can see how we add images to
Infragistics.Documents.Report.Report [and how we disposed objects]
and in 2 methods how we try to save report to mempory or to FS ..
When we try to PUBLISH [not create, exception is in PUBLISH method] REPORT with ~ 1000 rows [each row 2 images ~10 kb, total 2000 images] we got out of memory exception ..
I used “Scietech.Net Memory Profiler” and found that Infragistics.Documents.Color and Infragistics.Documents.SolidColourBrush
objects are not properly disposed, but I do not think that it causes that problem [size of objects that was not dispozed is small]..
Is it limitation in size of Infragistics.Documents.Report.Report
that can be saved to FS using Infragistics.Documents.Report.Report Publish method ?
Do you have any suggestion related with memory issue and Infragistics.Documents.Report.Report ?
Hello ,
Thank you for the provided code snippet.
In order to investigate this issue further for you, could you please let me know the exactly version of Infragistics, which you are using. Also I have reviewed the code snippet and I was not able to find a method, which fills the report with content, so could you please give me a sample which I could run on my machine in order to see your issue or please provide me the methods, which you are using to fill the report.
I am waiting for your details.
We are using Infragistic35.WebUI.Documents.v9.1
I attached a couple methods that , together with 2 from images that I attached before, fills the report with content ..
But problem is not memory leak, problem is architecture of component.
It builds document in memory, means that its execution depends of memory of machine where is running.
Is it possible to STREAM data to FS when we build document ?
Without streaming it is not possible to use it for big size pdf file .