Question: Parser Error Message: Access is denied

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

I am using a free rich text control from ExportTechnologies.

I was developing and debuggin fine. Restarted VS.NET 2003 and now I get
this error when trying to run my web app. Any ideas?

<---- ERROR BELOW ---->

Server Error in '/MyWeb' Application.
----------------------------------------------------------------------------
----

Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: Access is denied:
'ExportTechnologies.WebControls.RTE'.

Source Error:

Line 196: <add assembly="System.EnterpriseServices, Version=1.0.5000.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 197: <add assembly="System.Web.Mobile, Version=1.0.5000.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 198: <add assembly="*"/>
Line 199: </assemblies>
Line 200: </compilation>

Source File:
c:\windows\microsoft.net\framework\v1.1.4322\Config\machine.config Line:
198

Assembly Load Trace: The following information can be helpful to determine
why the assembly 'ExportTechnologies.WebControls.RTE' could not be loaded.

=== Pre-bind state information ===
LOG: DisplayName = ExportTechnologies.WebControls.RTE
(Partial)
LOG: Appbase = file:///c:/inetpub/wwwroot/EarlyAlert
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: ExportTechnologies.WebControls.RTE
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/earlyalert/71538edb/8fe7dbc7/ExportTechnologies.WebControls.RTE.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/earlyalert/71538edb/8fe7dbc7/ExportTechnologies.WebControls.RTE/Export
Technologies.WebControls.RTE.DLL.
LOG: Attempting download of new URL
file:///c:/inetpub/wwwroot/EarlyAlert/bin/ExportTechnologies.WebControls.RTE.DLL.
LOG: Publisher policy file is not found.
LOG: No redirect found in host configuration file
(C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet.config).
LOG: Using machine configuration file from
C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
LOG: Post-policy reference: ExportTechnologies.WebControls.RTE,
Version=0.9.4.1, Culture=neutral, PublicKeyToken=4b319444973ec2ca
 
Hi,

The log imply that CLR loader cant find
ExportTechnologies.WebControls.RTE.DLL in any of the directories that
CLR loader looks in. check that ExportTechnologies.WebControls.RTE.DLL.
with the right version and strong name exist in your Bin directory or
GAC.

you also mention that you edit this control. if you change the control
version you might notice that there is policy reference in
machine.config for that assembly.

Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
 
Back
Top