Reserved.ReportViewerWebControl.axd not found

Some thoughts scribbled down on Monday 08 December 2008 at 04:16 AM

Ran into this issue the other day at work. We were developing some reporting services reports for a client and viewing them through a report viewer control in the intranet site we were developing.

The reports ran fine in the development environment but as soon as it was published to testing the reports behaved strangely. The test box was a Windows 2008 Server Standard Edition with IIS installed and .NET 3.5 SP1.

ReportViewWebControl-not-found

The reports page was reporting a 404 on the following resource "Reserved.ReportViewerWebControl.axd"

This handler was definitely present in the web.config file:

I did the following to resolve this issue.

  1. Install Report Viewer 2008 Redist + SP1
  2. In IIS 7 | Handler Mappings


IIS-Handler-Mapping

  1. Under Actions | Add Managed Handler...
    IIS-Add-managed-handler
    1. Request path: Reserved.ReportViewerWebControl.axd
    2. Type: Microsoft.Reporting.Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    3. Name: Reserved-ReportViewerWebControl-axd
      IIS-Add-ReportViewer-Handler
  2. Click OK

Now the reports load up fine.

Comments

Tue 13 Jan 2009 at 3:53 PM

Michael K. Campbell → http://blog.angrypets.com

Thanks a million Eric.

I assumed it was something JUST like this - so you totally saved me some valuable time in troubleshooting!

Permalink

Mon 02 Feb 2009 at 12:50 PM

Jeffrey → http://blog.darkthread.net

Thanks for your valuable information, it solved my problem and I posted my tips on blog with a reference to your great post. (http://blog.darkthread.net/blogs/darkthreadtw/archive/2009/02/02/reportviewer-2008-on-iis7.aspx)

After testing, I found "2.Type: Microsoft.Reporting.Microsoft.Reporting.WebForms.HttpHandler, ...." should be Microsoft.Reporting.WebForms.HttpHandler, there is redundant "Microsoft.Reporting.Microsoft.Reporting" in your post.

Permalink

Thu 28 May 2009 at 12:33 PM

Milton

Thank You Mr. Eric,

This has save a lot of my time

Permalink

Thu 18 Jun 2009 at 3:52 PM

wolly

谢谢帮我我解决大问题!

Permalink

Tue 21 Jul 2009 at 10:54 AM

Jacques Amar

Please know that your sharing is greatly appreciated. The mindless hours spent trying to figure this out ...

Thanks

Permalink

Fri 04 Sep 2009 at 2:05 AM

elkami

nice :D

thank you very much i solve my problem

Permalink

Thu 10 Sep 2009 at 1:13 AM

Geoffo

Cheers dude - that was just what I needed!

Permalink

Sat 26 Sep 2009 at 4:23 AM

Enrique → SonarDMS.com

This solved my problem as well. I really appreciate the resolution.

Permalink

Sat 10 Oct 2009 at 1:56 AM

BobM

Just thought I'd chime in and remind you that you are THE MAN. This was my issue exactly.

Permalink

Thu 12 Nov 2009 at 9:49 PM

Ron Klein

Thanks for the great tip!

Permalink

Sun 29 Nov 2009 at 1:16 AM

juss

you are the men!! thanks!!

Permalink

Thu 03 Dec 2009 at 2:06 PM

lg

or in web.config <system.webServer><handlers> add this line:

<add name="Reserved-ReportViewerWebControl-axd" path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

Permalink

Thu 03 Dec 2009 at 11:23 PM

Prashant

Thanks Eric.. you saved my day :)

Permalink

Tue 12 Jan 2010 at 2:59 PM

Arshika

hello,

i developed my rdlc report in vs2008 but my IIS is 5.1 so, when i try to export in pdf or excel it dives error

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.

Requested URL: /Reserved.ReportViewerWebControl.axd

Permalink

Thu 14 Jan 2010 at 5:37 AM

Carl

Thank you very much. This was a life saver... kept getting errors when trying to generate Microsoft Reports from our development server. Thanks a million.

Permalink

Sat 13 Feb 2010 at 7:57 AM

Curtis

I tried this on or development server and the reports now render but I am not seeing any images that are on the report. Any ideas?

Permalink

Sat 13 Feb 2010 at 7:57 AM

Curtis

I tried this on or development server and the reports now render but I am not seeing any images that are on the report. Any ideas?

Permalink

Thu 04 Mar 2010 at 12:42 AM

Ken

Ditto. This worked for me as well and no doubt saved me a ton of hair pulling. Thanks!

Permalink

Post your comment