Hi Aniya,
We have same rdl and Server Configuration that we are using from many years. Just we have updated Window 2012 to Window 2019 in server post that changes we are getting this performance issue and we are using excel(working fine) , ppt , pptx (both have issue) format we are using in reports. Previously it takes 3-4 seconds in downloading now its taking 2-3 minutes in report downloading.
We have reverted window upgrade in Production environment then its working fine in production with same code.
BUT in UAT server we did not reverted window update so its getting problem. We have Sql Server 2014 and SSRS 2016 13.0.7024.30 . Any configuration we need to do post upgrade on windows.
Please help us to fix in this priority as window we need to upgrade in Server as its too old.
Excel is working fine in rendering but PPT and PPTX having issue in rendering as we are not using this method in excel only ppt downloading getting issue.
var executionService = new ReportExecutionService
{
Url = _reportingServiceUrl + "/ReportExecution2005.asmx?wsdl",
Credentials =
!string.IsNullOrWhiteSpace(Username)
? new System.Net.NetworkCredential(Username, Password, string.Empty)
: System.Net.CredentialCache.DefaultCredentials
};
executionService.Timeout = 600000;
executionService.LoadReport(reportPath, null);
executionService.SetExecutionParameters(SsrsParameters, "en-us");
executionService.Render(fileformat, deviceinfo, out extension, out encoding, out mimeType, out warnings, out streamIDs);
We are using this with aspose code below is the code that we are using:-
https://docs.aspose.com/slides/reportingservices/export-report-to-powerpoint-without-installation-of-aspose-slides-reportingservice-on-server/
Regards
Preeti Arora