Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
375
Problem with Exporting and Printing in Azure deployed web application
posted

I thought it best to create a new post extending the conversation from here ( http://www.infragistics.com/community/forums/t/79843.aspx ) .

My development environment is working fine but once deployed to Azure, report exporting and reporting are not working. Here are my (edited) entries from my Web.config that are identical in both deployments.  Since it is working locally I feel the problem has got to be with the difference in Azure and the fix probably is in the web.config/system.web or system.webserver.  Any suggestions as I have tried many things that have not yet worked?

<system.web>
<httpHandlers>
<add path="*.igrResource" verb="*" type="Infragistics.Reports.Server.ResourcesHandler, InfragisticsWPF4.Reports.Server.v12.2, Version=12.2.20122.2040, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxx" validate="false" />
</httpHandlers>
<httpModules>
<add name="ReportProcessorServiceModule" type="Infragistics.Reports.Server.ReportProcessorServiceModule, InfragisticsWPF4.Reports.Server.v12.2, Version=12.2.20122.2040, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxx" />
</httpModules>
<customErrors mode="RemoteOnly" />
</system.web>


<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules runAllManagedModulesForAllRequests="false" />
<handlers>
<add name="IgReportingResourcesHandler" verb="*" path="*.igrResource" type="Infragistics.Reports.Server.ResourcesHandler, InfragisticsWPF4.Reports.Server.v12.2, Version=12.2.20122.2040, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxx" />
</handlers>

</system.webServer>

Parents Reply Children