Link to home
Start Free TrialLog in
Avatar of Bruce
BruceFlag for United States of America

asked on

How do I get my ASP.NET app to reference the Report Viewer Redistributable on my UAT web server?

My ASP.NET Application cannot seem to find the ReportViewer components on my web server?  My embedded RDLC reports work fine on my development box.  But when I publish to my UAT web server I get this message...

Method not found: 'Void Microsoft.Reporting.WebForms.ReportViewer.Reset()'.       (See attached JPG)

The ReportViewer redistributable is installed on the UAT server. (See attached JPG)

I have included snippets of my web.config.

I have tried including the DLLs on my Bin folder of my project but it won't reference those either.  My first question was...(https://www.experts-exchange.com/questions/24849551/How-do-I-get-my-ASP-NET-application-to-recognize-the-ReportViewer-DLLs-in-its-own-Bin-directory.html)

There's 1000 points at stake.  Hope someone can help me out.

Thanks!!!
<assemblies>
...
 <add assembly="Microsoft.ReportViewer.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
        <add assembly="Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
      </assemblies>
      <buildProviders>
        <add extension=".asbx" type="Microsoft.Web.Services.BridgeBuildProvider" />
        <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.Common, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
      </buildProviders>
 
<httpHandlers>
 ...
      <add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />
    </httpHandlers>

Open in new window

Method-not-found--ReportViewer.R.png
AddRemovePrograms-20091028.JPG
ASKER CERTIFIED SOLUTION
Avatar of Muhammad Ousama Ghazali
Muhammad Ousama Ghazali
Flag of Saudi Arabia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial