Hello,
I have a simple local RDL report, one version with chart, other version without chart. The one with the chart is 0 bytes when generated.
The relevant C# script part is:
//write report
ReportWriter reportWriter = new ReportWriter(reportPath);
reportWriter.ReportProcessingMode = ProcessingMode.Remote;
//write report to stream
var format = WriterFormat.PDF;
MemoryStream ms = new MemoryStream();
reportWriter.Save(ms, format);
byte[] bytes = ms.ToArray();
I think that I am missing some assembly or so?