2012-06-12 63 views
0

Retrieving the COM class factory for component with CLSID {5FF57840-5172-4482-9CA3-541C7878AE0F} failed due to the following error: 80070005 .
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.失败,原因是出现以下错误:80070005

Exception Details: System.UnauthorizedAccessException : Retrieving the COM class factory for component with CLSID {5FF57840-5172-4482-9CA3-541C7878AE0F} failed due to the following error: 80070005 .

ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/> , the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.

To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.

Source Error:

Line 23: public partial class Report_Agent_Commission : System.Web.UI.Page 
Line 24: { 
Line 25:  ReportDocument obj = new ReportDocument(); 
Line 26:  CrystalClass CCobj = new CrystalClass(); 
Line 27:  static string repFile = string.Empty; 

Source File:
d:\inetpub\vhosts\impactwebclients.com\httpdocs\Report_Agent_Commission.aspx.cs

Line: 25

Stack Trace:

[UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {5FF57840-5172-4482-9CA3-541C7878AE0F} failed due to the following error: 80070005.] CrystalDecisions.CrystalReports.Engine.ReportDocument..cctor() +207 [TypeInitializationException: The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception.] CrystalDecisions.CrystalReports.Engine.ReportDocument..ctor() +0 PBS.GUI.Report_Agent_Commission..ctor() in d:\inetpub\vhosts\impactwebclients.com\httpdocs\Report_Agent_Commission.aspx.cs:25 ASP.report_agent_commission_aspx..ctor() in c:\windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\9b53e041\44708862\App_Web_report_agent_commission.aspx


这个问题我使用Crystal Reports时,2008年版本10.5.3700.0,如果我评论/删除它做工精细特定网页上的水晶报表的内容得到。当我把晶体的ReportViewer在当前网页则显示错误

能否请你帮我从这里走出

+0

你有没有尝试过你的问题的第3段建议? – GSerg

回答

0

我找到了一个答案我自己..请将自定义错误模式在webconfig 和检查错误状态号,99%它给错误号:500 - 这是一个内部服务器 错误,在服务器机器上有问题 问题可能是他们必须安装晶体报告运行时,否则可能是任何其他问题 所以它不在您的编码部分,因此在确认500错误后向他们提出投诉

感谢所有如果它是有用的任何人..这将是伟大的

相关问题