Hi, I'm having trouble connecting to my data in my report that I have created using Visual Studio 2012. I followed the walkthrough for "Creating a Simple Tabular Report" which was very simple. I then followed the "How to Display a Reporting Using the HTML5 Report viewer" which is where I'm encountering errors. I have the HTML5 Report Viewer loading properly, but the data never fills in. The Report Viewer throws the error Cannot establish connection with the Report Server. The console in Google Chrome states that there is a 404 error,
I'm trying to deploy to an actually IIS server now, I've followed all your directions and for some reason the version on the server gives the 404 error, but the version when I debug it in Visual Studio displays the report. Any suggestions?
Awesome, thank you so much! Your help has been greatly appreciated :)
Hi,
Yes, that is right.
When running a Report Service on IIS / IIS Express, the handlers and modules go in the system.webServer section in the web.config configuration file instead of the system.web:
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<handlers>
<add name="IgReportingResourcesHandler" verb="*" path="*.igrResource" type="Infragistics.Reports.Server.ResourcesHandler, InfragisticsWPF4.Reports.Server.v12.2, Version=12.2.20122.1014, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" resourceType="Unspecified" />
</handlers>
<modules>
<add name="ReportProcessorServiceModule" type="Infragistics.Reports.Server.ReportProcessorServiceModule, InfragisticsWPF4.Reports.Server.v12.2, Version=12.2.20122.1014, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" />
</modules>
</system.webServer>
I also attached:
Hope this helps,
Simon,
What changes would I need to make it work on an IIS server. I'm going to have to deploy to an IIS server in the future and you stated there would be some changes to the web.config file?
Thanks,
Christopher
Nice it has finally worked!
You are wellcome :)