Machine.config file no longer likes App

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello

So, I am doing my developer thing, modifying some code in a web form 2 levels down in a web application. I try to run the App (It is worth noting here, I have run the Application 50+ times a day for the past 2 days) and I get an exception page (Note below).

Any Ideas as to what caused this little surprise? There has been no modification of this file...ever. MABillingProxy is the same it has been since January.

After attempting this post several times, a developer here suspected the Indexing service. That has been turned off, now, and the problem cited below has vanished

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: 'MABillingProxy'

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 'MABillingProxy' could not be loaded

=== Pre-bind state information ==
LOG: DisplayName = MABillingProx
(Partial
LOG: Appbase = file:///c:/inetpub/wwwroot/3rdPartyWe
LOG: Initial PrivatePath = bi
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: MABillingProx
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/3rdpartyweb/5bad85e4/fd21c47/MABillingProxy.DLL
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/3rdpartyweb/5bad85e4/fd21c47/MABillingProxy/MABillingProxy.DLL
LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/3rdPartyWeb/bin/MABillingProxy.DLL
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind)
LOG: Post-policy reference: MABillingProxy, Version=0.0.0.0, Culture=neutral, PublicKeyToken=nul


Also, what is with the MSDN newsgroups? I have to post anything several time before I get any indication any part of the board is working. Maybe you guys should hire a consultant
 
Hi,

From your description, you encountered the "Access Denied" exception
recently in your ASP.NET web app. Also you found that if you turn off the
index service as some one suggested, the exception disappeared, yes?
If there is anything I misunderstood, please feel free to let me know.

Based on my experience, there are some certain situations which'll cause
such problems.
1. When you have a certain assembly(dll) which is strong-named. If you put
it in application's bin folder rather than registered it in the GAC(Global
Assembly Cache) and if the index serviced in turned on, there'll occur the
similar exception as you mentioned. Here is the related kb article:

#PRB: "Access Denied" Error Messages When You Do Not Put Strong-Named
Assemblies in the Global Assembly Cache
http://support.microsoft.com/?id=813833

2. When you use the Index Sevice in your ASP.NET web application and with
the impersonate as true. There'll also occur "Access is Denied" exception,
here is the related kb:

#FIX: "Access Is Denied" Error Message When You Try to Access Indexing
Service from ASP.NET with Impersonation Enabled
http://support.microsoft.com/?id=323293

In addition, according to your problem's symptom, I think the #1 is more
likely, please have a check on it to see whether it suits your problem. If
you have any quesitons, please feel free to post here. Thanks.


Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

Get Preview at ASP.NET whidbey
http://msdn.microsoft.com/asp.net/whidbey/default.aspx
 
Back
Top