.net – 无法在azure上找到程序集“Microsoft.IdentityModel”错误

我正在为我的MVC3 Web应用程序使用ACS身份验证.它在我的本地计算机上工作得很好.但是当我将其上传到Azure时.我收到此错误.我设置copyLocal = True,请帮忙

Unable to find assembly 'Microsoft.IdentityModel,Version=3.5.0.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35'. 
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.Runtime.Serialization.SerializationException: Unable to find assembly 'Microsoft.IdentityModel,PublicKeyToken=31bf3856ad364e35'.

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.

解决方法

更多信息.复制本地,即.确保Microsoft.IdentityModel.dll位于bin目录中,除非您的代码使用RoleEnvironment API,否则它将起作用.如果是这种情况,那么您将遇到以下已知问题:

http://msdn.microsoft.com/en-us/library/windowsazure/hh403974.aspx

在这种情况下,Microsoft.IdentityModel将需要存在于Azure VM的GAC中.要完成此任务,请使用启动任务.这篇文章描述了实现此目的的两种方法

http://blogs.infosupport.com/adding-assemblies-to-the-gac-in-windows-azure/

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...