<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>
Hello Richard ,
It seems that there’s a problem with the image you attached. Could you try zipping and attaching it again so that I may see it?
Thank you for your cooperation.
Best Regards,
Maya Kirova
Developer Support Engineer II
Infragistics, Inc.
http://ko.infragistics.com/support
Thank you so much for your help so far.
I made the changes you suggested and I still have issues. My site does work locally just not on Azure. I have confirmed that all the appropriate WPF and Server files are in the "bin" folder in my Azure deployment.
My system.webServer node is now:
<system.webServer> <modules> <add name="ReportProcessorServiceModule" type="Infragistics.Reports.Server.ReportProcessorServiceModule, InfragisticsWPF4.Reports.Server.v13.1" /> </modules> <handlers> <add name="IgReportingResourcesHandler" verb="*" path="*.igrResource" type="Infragistics.Reports.Server.ResourcesHandler, InfragisticsWPF4.Reports.Server.v13.1" /> </handlers> </system.webServer>
One note, when I click on Export, the images do not show up on the buttons (see attachment below). I wonder if this provides some clue as to the core issue. When I do click on PDF (or whatever format), I see the spinner but it never resolves and just hangs.
I think you just need the assembly name for the type:
<system.webServer>
<handlers>
<add name="IgReportingResourcesHandler" verb="*“ path="*.igrResource" type="Infragistics.Reports.Server.ResourcesHandler, InfragisticsWPF4.Reports.Server.v13.1" />
</handlers>
One more thing to make sure is that all of the assemblies that the application needs have been added on the server:
http://help.infragistics.com/Help/NetAdvantage/Reporting/2013.1/CLR4.0/html/Assemblies_Needed_for_Distribution.html
Let me know if that helps.
<system.webServer> <validation validateIntegratedModeConfiguration="false" /> <modules runAllManagedModulesForAllRequests="true">
<add name="ReportProcessorServiceModule" type="Infragistics.Reports.Server.ResourcesHandler, InfragisticsWPF4.Reports.Server.v13.1, Version=13.1.20131.1007, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
</modules>
<add name="IgReportingResourcesHandler" verb="*" path="*.igrResource" type="Infragistics.Reports.Server.ResourcesHandler, InfragisticsWPF4.Reports.Server.v13.1, Version=13.1.20131.1007, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
</handlers> </system.webServer>
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Configuration.ConfigurationErrorsException: Infragistics.Reports.Server.ResourcesHandler, InfragisticsWPF4.Reports.Server.v13.1, Version=13.1.20131.1007, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb does not implement IHttpModule.