Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Configuration error

Status
Not open for further replies.

whloo

Programmer
Apr 14, 2003
168
SG
Hi, i getting a very very weird error.
I have a ready project that can work perfectly ok previously. then it suddenly give me the error as shown in below whenever i try to access it :(
I tried many ways such as trying to see folder access right and so on.... but it still giving me the same error :(

***************************************************************************
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: 'SystemAir'.

Source Error:


Line 223: <add assembly="System.EnterpriseServices, Version=1.0.5000.0, Culture=neutral, PublicKeyToken="/>
Line 224: <add assembly="System.Web.Mobile, Version=1.0.5000.0, Culture=neutral, PublicKeyToken="/>
Line 225: <add assembly="*"/>
Line 226: </assemblies>


Source File: c:\winnt\microsoft.net\framework\v1.1.4322\Config\machine.config Line: 225

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


=== Pre-bind state information ===
LOG: DisplayName = SystemAir
(Partial)
LOG: Appbase = file:///c:/inetpub/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: SystemAir
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/SystemAir/d2cf7040/505ceae7/SystemAir.DLL.
LOG: Attempting download of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/SystemAir/d2cf7040/505ceae7/SystemAir.DLL.
LOG: Attempting download of new URL file:///c:/inetpub/LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Post-policy reference: SystemAir, Version=1.0.1596.18967, Culture=neutral, PublicKeyToken= null

***************************************************************************

please help because i really out of idea why this happened. your input will be much appreciated.
Thanks!

Regards,
weihann
 
It is clear that something happend on the machine where you run the project. Some changes or settings were done on .NET Framework or on the securiy policies.
1. Code Access Security Policy Tool (Caspol.exe)
Allows you to examine and modify machine, user, and enterprise-level code access security policies.
Note: Caspol.exe can be found in "%windir%\Microsoft.NET\Framework\v1.1.xxxx" where xxxx is the build number of the .NET Framework you are using.
Permissions View Tool (Permview.exe)-Displays the minimal, optional, and refused permission sets requested by an assembly. You can also use this tool to view all declarative security used by an assembly.
Check for ASP.NET.
2. Go to Control Pnael->Administrative Tool->Microsoft .NET Framework 1.1 Configuration.
Expand RunTime Security Policy and there Entrprise, Machine and User.
You should know how to modify these features. Machine changes will be stored in c:%windir%\microsoft.net\framework\v1.1.4322\Config\machine.config file.

-obislavu-
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top