程序集绑定重定向不起作用

时间:2013-03-05 14:35:41

标签: asp.net-mvc redirect binding azure .net-assembly

我正在尝试在Azure上部署测试Web应用程序,但是当我在本地计算机上运行Azure模拟器时,我从附加到我的WebRole的Azure模拟器控制台中收到此错误:

System.TypeLoadException: Unable to load the role entry point due to the following     exceptions:
-- System.IO.FileLoadException: Could not load file or assembly 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
File name: 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'

=== Pre-bind state information ===
LOG: User = COLLAB\mirko.lugano
LOG: DisplayName = System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
(Fully-specified)
LOG: Appbase = file:///C:/Code/Application/<MyWebProject>.Azure/csx/Debug/roles/<MyWebProject>/approot/bin
LOG: Initial PrivatePath = C:\Code\Application\<MyWebProject>.Azure\csx\Debug\roles\<MyWebProject>\approot\bin
Calling assembly : ActionMailer.Net.Mvc, Version=0.7.4.0, Culture=neutral, PublicKeyToken=e62db3114c02a1c2.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Code\Application\<MyWebProject>.Azure\csx\Debug\roles\<MyWebProject>\base\x64\WaIISHost.exe.Config
LOG: Using host configuration file: 
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework64\v4.0.30319\config\machine.config.
LOG: Post-policy reference: System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
LOG: Attempting download of new URL file:///C:/Code/Application/<MyWebProject>.Azure/csx/Debug/roles/<MyWebProject>/approot/bin/System.Web.Mvc.DLL.
WRN: Comparing the assembly name resulted in the mismatch: Major Version
ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated.

---> System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
  at System.Reflection.RuntimeModule.GetTypes(RuntimeModule module)
  at System.Reflection.RuntimeModule.GetTypes()
  at System.Reflection.Assembly.GetTypes()
  at Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.GetRoleEntryPoint(Assembly entryPointAssembly)
  --- End of inner exception stack trace ---
  at Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.GetRoleEntryPoint(Assembly entryPointAssembly)
  at Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.CreateRoleEntryPoint(RoleType roleTypeEnum)
  at Microsoft.WindowsAzure.ServiceRuntime.RoleEnvironment.InitializeRoleInternal(RoleType roleTypeEnum)
[fabric] Role state Unknown

只要我在本地计算机上安装了MVC3(MVC3程序集在GAC中),一切都运行良好,但是由于我删除了MVC3(Azure没有安装MVC),我收到此错误。我的网络应用程序定期包含MVC4,工作正常。然后我想到了程序集绑定重定向,我注意到在我的web.config文件中我已经有了:

  <runtime>    
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">      
    ...
    <dependentAssembly>        
      <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" culture="neutral" />
      <bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
    </dependentAssembly>
    ...
  </assemblyBinding>
</runtime>
根据我在互联网上阅读的文档,

应该是正确的。我还尝试将System.Web.Mvc.dll版本4.0.0.0 )的 SpecificVersion 属性设置为 false ,但无济于事。我错过了什么吗?调用程序集ActionMailer.Net.Mvc是否应该自动重定向到正确版本的MVC程序集?任何想法都非常感谢。感谢。

3 个答案:

答案 0 :(得分:10)

在Azure WebRoles中,默认情况下(在完整IIS模式下),RoleEntryPoint会从WebRole的其余部分中脱离出来,并在不同的进程中运行。

这样做的副作用是您的RoleEntryPoint无权访问 web.config

  • Azure SDK 1.3 -1.7将在 WaIISHost.exe.config

  • 中查找
  • Azure SDK 1.8+将在 WebRoleProjectName.dll.config 中查找。

通过对SDK的最新更改,您应该能够在项目中放置 app.config ,然后您的角色入口点就可以访问它了。

您可以在此Microsoft blog post或此Stackoverflow post

中详细了解此信息

答案 1 :(得分:5)

感谢Rune的珍贵提示。这并没有解决我的问题,但它指出了正确的方向,因为我有最新版本的Azure SDK(1.8),这个WaIISHost.exe.config技巧不再适用于最新版本的Azure。 HERE说明了我刚才所说的以及对我有用的解决方案,即将WaIISHost.exe.config文件重命名为MyWebAppName.dll.config(将其置于web.config文件的同一级别)您的Web应用程序并将其Copy to output Directory属性设置为'Always Always'。当然,此配置文件包含如上所述的绑定重定向部分。

答案 2 :(得分:2)

截至今天,使用最新的SDK,将使用Web.config的内容自动为您生成WebRoleProjectName.dll.config并将其复制到输出目录。

然而,这不会自动包含在部署包中!为此,您必须采用一种hackish解决方案:通过选择&#34;显示所有文件&#34;,然后仅包括此文件,在项目中包含生成的文件。由此产生的csproj变化应该是这样的(不是,不要选择它是&#34;总是复制&#34;!):

<Content Include="bin\WebRoleProjectName.dll.config" />