Posted 28 December 2022, 2:00 pm EST - Updated 28 December 2022, 2:05 pm EST
I have a MVC web app that I am adding ActiveReports to for reporting purposes. I have one of our reports converted over and when running from in the designer I have no issues. But when trying to view that same report in the WebViewer I am met with a very generic “Document processing error”. I have been looking high and low for an answer but cannot find anything in the documentation nor have I found anyone else seeing that same error message.
My aspx page is just the WebViewer control with no modifications to it, and I am loading the report in the code as follows:
PageReport pageReport = new PageReport();
FileInfo reportFile = new FileInfo(Server.MapPath("~") + @"\Report_Files\r_Itasks.rdlx");
pageReport.Load(reportFile);
WebViewer1.Report = pageReport;
Attached is a screenshot of the error I am seeing. Does anyone have any ideas what I’m doing wrong?
Thank you,
Joseph