6

我有一个相当简单的内部 ASP.Net 网站,该网站在加载 Microsoft.Practices.EnterpriseLibrary.Data dll 时遇到问题,大约每周一次。这是异常消息:

System.IO.FileLoadException: Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Access is denied.
File name: 'Microsoft.Practices.EnterpriseLibrary.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null'
   at foobar.Intranet.Logic.Data.UserDB.SelectByUserName(String userName)
   at foobar.Intranet.Logic.Info.User.ValidateUser(String userName) in F:\Development\foobar\foobar\foobar.Intranet.Logic\Info\User.cs:line 130
   at Login.ValidateUser(String username, String password) in e:\foobar\foobar.Intranet\Login.aspx.cs:line 32

=== Pre-bind state information ===
LOG: User = Unknown
LOG: DisplayName = Microsoft.Practices.EnterpriseLibrary.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null
 (Fully-specified)
LOG: Appbase = file:///E:/foobar/foobar.Intranet/
LOG: Initial PrivatePath = E:\foobar\foobar.Intranet\bin Calling assembly : foobar.Intranet.Logic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: E:\foobar\foobar.Intranet\web.config
LOG: Using host configuration file: \\?\C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet.config
LOG: Using machine configuration file from C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.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/Framework/v2.0.50727/Temporary ASP.NET Files/foobar.intranet/668896d8/82d7e51c/Microsoft.Practices.EnterpriseLibrary.Data.DLL.
LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/Temporary ASP.NET Files/foobar.intranet/668896d8/82d7e51c/Microsoft.Practices.EnterpriseLibrary.Data/Microsoft.Practices.EnterpriseLibrary.Data.DLL.
LOG: Attempting download of new URL file:///E:/foobar/foobar.Intranet/bin/Microsoft.Practices.EnterpriseLibrary.Data.DLL.
ERR: Failed to complete setup of assembly (hr = 0x80070005). Probing terminated.

注意事项:

  • 一个简单的 IIS 重置解决了这个问题。
  • 我们在单个网络服务器上运行相同的代码,没有任何问题。然后,我们将站点移至两个新的负载平衡(使用粘性会话)网络服务器(所有三个 Windows Server 2003 R2 标准版 SP1)。现在,每个负载平衡的网络服务器每周都会突然抛出一次这个异常。
    • 我能想到的唯一主要区别是我在负载平衡服务器上安装了 4.0 .NET 框架。该网站仍在 ASP.NET 2.0 下运行,所以我看不出这会是什么问题
  • 我已将索引服务配置为不搜索“Temporary ASP.NET Files”文件夹,但它没有帮助。
  • 我们在我们网站的任何地方都使用 Microsoft.Practices.EnterpriseLibrary.Data dll。几乎每个页面都使用我们的逻辑 dll,而后者又使用 EnterpriseLibrary dll。
  • 虽然错误发生一次,但我什至查看了哪些进程将 dll 锁定在“临时 ASP.NET 文件”文件夹中,这与服务器上运行良好的锁没有任何不同。
  • 一旦错误开始,它每次都会出错,直到执行 iisreset

任何人都可以提供的任何见解将不胜感激。如果我错过了什么,请告诉我。

谢谢!

4

2 回答 2

3

看看Assembly Binding Log Viewer。它可能会为您指明正确的方向。

我快速浏览了其他 SO 答案,有人建议该应用程序可能是针对 DLL 的签名版本开发的,但生产运行时只能访问未签名版本。看起来您的产品正在加载一个未签名的程序集 ( PublicKeyToken=null)。

于 2010-06-30T15:01:11.490 回答
0

安装以下 nuget 包:

安装包 log4net -版本 2.0.0 安装包 linqtoexcel

安装包 System.Data.Sqlite.x86 -版本 1.0.88.0 安装包 ServiceStack -版本 3.9.71 安装包 ServiceStack.OrmLite.Sqlite32 -版本 3.9.71

于 2016-08-23T04:50:30.047 回答