Thanks @jan_blaha ! Any ETA on v2? I know, that was probably the worse question ever, ha!
Posts made by macarson123
-
RE: ChromePdf recipe option not available in .NET jsreport sdkposted in .net sdk forum
-
RE: .Net Local reporting Phantom file not closingposted in .net sdk forum
fyi, I figured it out:
FileStream stream = new FileStream(outfile, FileMode.Create);
customReport.Content.CopyTo(stream);
stream.Close(); -
RE: .Net Local reporting Phantom file not closingposted in .net sdk forum
I just noticed the Report.Content.Dispose() method, but that didn't do it either.
-
RE: ChromePdf recipe option not available in .NET jsreport sdkposted in .net sdk forum
After updating to the newest Types, do you have to manually install jsreport-chrome-pdf using npm as well? I'm getting the generic "One or more errors have occured" exception.
-
.Net Local reporting Phantom file not closingposted in .net sdk forum
Hello!
Using PhantomPDF and c# with the .AsUtility() option of the LocalReporting object, I'm able to Render the HTML to PDF just fine, but the app holds on to the PDF so I'm not able to access it until the program is closed. I've tried to set all objects to null and run the rs.KillAsync().Wait() command. Is there something else that I need to do?