access denied on dll

J

Jeremy Ames

I am trying to move an application from my system to a new test system. I really should have tried an easier program first, but I didn't really have a chance. My application was originally written in ASP.NET 1.1, but was migrated to 2.0 during development. The reason this is an issue is because the application is using the Microsoft.Web.UI.WebControls.dll for the tree view and tab strip controls that didn't exist prior to 2.0. Well, that is where my problem lies. I am getting an access denied message when it is trying to load that dll. I am impersonating a user and I am pretty sure that I have granted access every where that I needed. Please assist.

Here is the ASP.NET error message:
Could not load file or assembly 'microsoft.web.ui.webcontrols' or one of its dependencies. Access is denied.
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.IO.FileLoadException: Could not load file or assembly 'microsoft.web.ui.webcontrols' or one of its dependencies. Access is denied.

Source Error:


An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.


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


WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].



Stack Trace:


[FileLoadException: Could not load file or assembly 'microsoft.web.ui.webcontrols' or one of its dependencies. Access is denied.]

[FileLoadException: Could not load file or assembly 'Microsoft.Web.UI.WebControls, Version=1.0.2.226, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Access is denied.]
System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +0
System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +211
System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +141
System.Reflection.Assembly.Load(String assemblyString) +25
System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +32

[ConfigurationErrorsException: Could not load file or assembly 'Microsoft.Web.UI.WebControls, Version=1.0.2.226, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Access is denied.]
System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +596
System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory() +3479033
System.Web.Configuration.CompilationSection.LoadAssembly(AssemblyInfo ai) +46
System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig) +177
System.Web.Compilation.BuildProvidersCompiler..ctor(VirtualPath configPath, Boolean supportLocalization, String outputAssemblyName) +180
System.Web.Compilation.ApplicationBuildProvider.GetGlobalAsaxBuildResult(Boolean isPrecompiledApp) +3446613
System.Web.Compilation.BuildManager.CompileGlobalAsax() +51
System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +462

[HttpException (0x80004005): Could not load file or assembly 'Microsoft.Web.UI.WebControls, Version=1.0.2.226, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Access is denied.]
System.Web.Compilation.BuildManager.ReportTopLevelCompilationException() +57
System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +612
System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters) +456

[HttpException (0x80004005): Could not load file or assembly 'Microsoft.Web.UI.WebControls, Version=1.0.2.226, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Access is denied.]
System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +3426839
System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +88
System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +149




Here is the message that was left in the event log:
Description:
Event code: 3008
Event message: A configuration error has occurred.
Event time: 7/6/2007 11:22:11 AM
Event time (UTC): 7/6/2007 4:22:11 PM
Event ID: 8db6944cf5db4e649d716259d49e6c5b
Event sequence: 1
Event occurrence: 1
Event detail code: 0

Application information:
Application domain: /LM/W3SVC/1/Root/kdoc-3-128282125313601282
Trust level: Full
Application Virtual Path: /kdoc
Application Path: c:\inetpub\wwwroot\kdoc\
Machine name: [HIDDEN NAME]

Process information:
Process ID: 2268
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE

Exception information:
Exception type: HttpException
Exception message: Could not load file or assembly 'Microsoft.Web.UI.WebControls, Version=1.0.2.226, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Access is denied.

Request information:
Request URL: http://localhost/kdoc/Default.aspx
Request path: /kdoc/Default.aspx
User host address: 127.0.0.1
User:
Is authenticated: False
Authentication Type:
Thread account name: [HIDDEN NAME]


Thread information:
Thread ID: 1
Thread account name: [HIDDEN NAME]
Is impersonating: False
Stack trace: at System.Web.Compilation.BuildManager.ReportTopLevelCompilationException()
at System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled()
at System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters)
 
M

Mark Rae [MVP]

J

Jeremy Ames

I understand that, and it wasn't really supported that well back when I
started using it either. There is a lot of stuff that would require a
rewrite if I did change it. Getting past the obvious, and back to the issue
at hand, what is going on with the security?
 
M

Mark Rae [MVP]

There is a lot of stuff that would require a rewrite if I did change it.

I appreciate that. I used the WebControls on a couple of client projects in
ASP.NET 1.1 and, once I realised that they weren't going to work at all in
v2.0, I upgraded to the new ASP.NET 2.0 controls - took about 5 minutes per
page...
what is going on with the security?

I'm sorry, but I don't know... There have been other threads in here (long
time ago now) where people have tried to use the WebControls in ASP.NET 2.0,
and have given up because they simply don't work...
 
J

Jeremy Ames

Thank you for your response.

I don't think that it was supported when I started using it in the first
place. The real issue is not whether this is supported or not, it is how do
I resolve my access denied problem.

I just put a simple application out there. I had it working until I changed
it to use impersonation, now I am getting the same message. I have given the
specified user access to that folder. What else do I need to do?
 
J

Jeremy Ames

Sorry about the repost... Still getting used to the mail reader.

Jeremy Ames said:
Thank you for your response.

I don't think that it was supported when I started using it in the first
place. The real issue is not whether this is supported or not, it is how
do I resolve my access denied problem.

I just put a simple application out there. I had it working until I
changed it to use impersonation, now I am getting the same message. I have
given the specified user access to that folder. What else do I need to do?
 
J

Jeremy Ames

It definitely works. I am running a couple of applications with it in my
test and production environments. This is my first real application with 2.0
and I could not load it into my existing test environment because it is IIS
5.0 with 1.1 applications already running.
 
J

Jeremy Ames

I don't know if you read my repost from this morning, but I created a simple
application yesterday and installed it on the new test server. I managed to
get the application running, and everything was good until I enabled
impersonation. The application is a "hello world" application so there is
nothing going on behind the scenes.
 

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

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,066
Latest member
VytoKetoReviews

Latest Threads

Top