Please help! - configuration error

V

VB Programmer

I am using the free rich text editor control from ExportTechnologies. Every
once in a while I get this error (for no apparent reason). Sometimes it
happens even when I'm working on a totally non-related page! To fix it I
strip out ALL references to the editor the redo the references and it
sometimes works. Any ideas?

Here's the full error:

Server Error in '/MyWebApp' 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/MyWebApp
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/MyWebApp/00214fb4/baf88fe7/exporttechnologies.webcontrols.rte.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/MyWebApp/00214fb4/baf88fe7/exporttechnologies.webcontrols.rte/exportte
chnologies.webcontrols.rte.DLL.
LOG: Attempting download of new URL
file:///C:/Inetpub/wwwroot/MyWebApp/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
________________________________________
Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET
Version:1.1.4322.573
 
J

John Saunders

VB Programmer said:
I am using the free rich text editor control from ExportTechnologies. Every
once in a while I get this error (for no apparent reason). Sometimes it
happens even when I'm working on a totally non-related page! To fix it I
strip out ALL references to the editor the redo the references and it
sometimes works. Any ideas?

Here's the full error:

Server Error in '/MyWebApp' 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>

This looks similar to a known problem with the Indexing Service. It can keep
assemblies open in such a way that the <add assembly="*" /> element cannot
access them. Try stopping the Indexing Service and see if that fixes the
problem.
 
V

VB Programmer

That worked. How can I fix it permanently? Do I have to keep shutting down
this service? What does it do?

Thanks John!
 
J

John Saunders

VB Programmer said:
That worked. How can I fix it permanently? Do I have to keep shutting down
this service? What does it do?

Indexing Service creates indexes which speed up searches on your machine. It
is often used to create indexes for web-site searches. If you're not using
it, simply disable the service in the Services applet under Computer
Management.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top