Permission error on a referenced file..

Discussion in 'ASP.NET 2.0' started by klexen, Dec 1, 2007.

  1. The error I'm getting is below. I have a Bin folder that contains the dll Interop.SHDocVw.dll.


    But I guess I'm getting a permission error to the file. What can I do to correct this error? When I go to folder permissions, anonymous has read/write access to this file..



    Server Error in '/Invoice' Application.


    Retrieving the COM class factory for component with CLSID {0002DF01-0000-0000-C000-000000000046} 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.

    Exception Details: System.UnauthorizedAccessException: Retrieving the COM class factory for component with CLSID {0002DF01-0000-0000-C000-000000000046} 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:





    Code:
    Line 57:         }
    Line 58:     }
    Line 59:     public SHDocVw.InternetExplorer ie = new SHDocVw.InternetExplorerClass(); 
    
     
  2. You will not be able touse objects thatallows access to Internet Explorer on the server, for obvious security reasons.

    Aristotle

    DiscountASP.NET
    www.DiscountASP.NET
     

Share This Page