无法加载文件或程序集,因为"访问被拒绝"(标识:网络服务)



在加载项目时,我收到以下错误。应用程序池标识设置为"NETWORK SERVICE"。"NETWORK SERVICE"作为"安全权限"对下面引用的ASP.NET TEMP目录具有完全访问权限。我应该怎么做才能解决以下问题?

 Could not load file or assembly 'EPi247.Selvbetjening.Templates' 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 'EPi247.Selvbetjening.Templates' 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 'EPi247.Selvbetjening.Templates' could not be loaded.

Assembly manager loaded from:  C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll
Running under executable  c:windowssystem32inetsrvw3wp.exe
--- A detailed error log follows. 
=== Pre-bind state information ===
LOG: User = NT AUTHORITYNETWORK SERVICE
LOG: DisplayName = EPi247.Selvbetjening.Templates
 (Partial)
WRN: Partial binding information was supplied for an assembly:
WRN: Assembly Name: EPi247.Selvbetjening.Templates | Domain ID: 3
WRN: A partial bind occurs when only part of the assembly display name is provided.
WRN: This might result in the binder loading an incorrect assembly.
WRN: It is recommended to provide a fully specified textual identity for the assembly,
WRN: that consists of the simple name, version, culture, and public key token.
WRN: See whitepaper http://go.microsoft.com/fwlink/?LinkId=109270 for more information and common solutions to this issue.
LOG: Appbase = file:///C:/repo/projects/OppdalCMS6R2Empty/
LOG: Initial PrivatePath = C:repoprojectsOppdalCMS6R2Emptybin
Calling assembly : (Unknown).
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:repoprojectsOppdalCMS6R2Emptyweb.config
LOG: Using host configuration file: C:WindowsMicrosoft.NETFramework64v4.0.30319aspnet.config
LOG: Using machine configuration file from C:WindowsMicrosoft.NETFramework64v4.0.30319configmachine.config.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/Temporary ASP.NET Files/root/1725e370/13a5a0c6/EPi247.Selvbetjening.Templates.DLL.
LOG: Attempting download of new URL file:///C:/Windows/Microsoft.NET/Framework64/v4.0.30319/Temporary ASP.NET Files/root/1725e370/13a5a0c6/EPi247.Selvbetjening.Templates/EPi247.Selvbetjening.Templates.DLL.
LOG: Attempting download of new URL file:///C:/repo/projects/OppdalCMS6R2Empty/bin/EPi247.Selvbetjening.Templates.DLL.
ERR: Failed to complete setup of assembly (hr = 0x80070005). Probing terminated.

如果您的站点使用模拟,则负载可能发生在用户的帐户下(而不是AppPool进程的帐户下)。您可以在出现异常时通过检查Environment.UserName来确认。

如果是这种情况,您需要确保触发程序集加载的代码在进程帐户下运行(所有其他需要文件系统访问的操作也是如此)。

最新更新