I need to enable CORS in Reporting Services so that I can download reports from my web application using ajax. What I\'ve learned so far is, that SSRS is no longer using II
I managed to get this working by adding the following code to the global.asax in reportserver directory.
<%@ Application Inherits="Microsoft.ReportingServices.WebServer.Global" %> <%@ Import namespace="System.Web" %> <%@ Import namespace="System.Security" %>
HTH cheers Dave