Microsoft Knowledge Base Article
This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved.
Terms
of Use |
Trademarks
Article ID: 977574 - Last Review: December 28, 2009 - Revision: 1.0
Error message in Microsoft System Center Operations Manager 2007 report: “The Dundas chart for Reporting Services report item is unavailable"
In Microsoft System Center Operations Manager 2007, the Operations Manager report displays the following error message:
The Dundas chart for Reporting Services report item is unavailable
This issue occurs because there is a change in the reporting services Web.config file after you upgrade from SQL Reporting Services 2005 to SQL Server Reporting Services 2008. The changes prevent charts from being displayed within Operations Manager reports.
To resolve this issue, change the Web.config file from:
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.ReportingServices.Interfaces" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="8.0.242.0" newVersion="10.0.0.0" />
<bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" />
</dependentAssembly>
<dependentAssembly xmlns=""> -- This line is wrong
<assemblyIdentity name="Microsoft.ReportingServices.ProcessingCore" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
Change Web.config file to:
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.ReportingServices.Interfaces" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="8.0.242.0" newVersion="10.0.0.0" />
<bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" />
</dependentAssembly>
<dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity name="Microsoft.ReportingServices.ProcessingCore" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="9.0.242.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
For more information, click the following article number to view the article in the Microsoft Knowledge Base:
971541Â
(http://kbalertz.com/Feedback.aspx?kbNumber=971541/
)
Description of System Center Operations Manager 2007 Service Pack 1 Update
APPLIES TO
- Microsoft System Center Operations Manager 2007
| kbsurveynew kbexpertiseadvanced kbtshoot KB977574 |
Community Feedback System
Very often, it takes hours to solve a problem. Very often, you've looked high
and low, and have tried a lot of solutions. When you finally found it, chances
are, it was because someone else helped you. Here's your chance to give back.
Use our community feedback tool to let others know what worked for you and what
didn't.
Please also understand that the community feedback system is not warranted to be
correct, it's simply a system that we've built to let people try and help each
other. If something in a feedback response doesn't make sense to you, or you're
not comfortable making changes that the feedback talks about (like registry
edits), please consult a professional.
Thank you for using kbAlertz.com Feedback System.
-- Scott Cate