Hi all,
I know this error is documented in *many* post in the web. I've sure read all of them and can not make my report working. This is a small application I built using VS2012 and deployed in a server some weeks ago. Everything is working fine with deployed app. Now, I'm trying to add a report in VS2012 and this situation arises.
When I debug my app and try to get the report, all I get is this message:
The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file. Add <add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" /> to the system.web/httpHandlers section of the web.config file
As I said, this is well reported in posts around the web; I have applied some suggested solutions, but to no avail.
As per some posts, I've added this sections to my web.config file:
<httpHandlers><add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/></httpHandlers>
and this also:
<system.webServer><modules runAllManagedModulesForAllRequests="true"/><validation validateIntegratedModeConfiguration="false" /><handlers><add name="ReportViewer" path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/></handlers></system.webServer>
Still getting the error mentioned above.
Can somebody help me with this issue. This is tormenting me.
Thanks and bye ...