我正在尝试使用自定义服务器端登录页面、this 教程和 this 代码示例中的代码将 FederatedAuthentication 与 .NET 4.5、MVC 4 和主动重定向结合在一起。

重定向到我的 AccountController 的 LogOn 方法工作正常,该方法如下所示:

public ActionResult LogOn()
{
    HrdClient hrdClient = new HrdClient();
    WSFederationAuthenticationModule fam = FederatedAuthentication.WSFederationAuthenticationModule; /*** Fails here because this is null **/
    HrdRequest request = new HrdRequest(fam.Issuer, fam.Realm, context: Request.QueryString["ReturnUrl"]);
    IEnumerable<HrdIdentityProvider> hrdIdentityProviders = hrdClient.GetHrdResponse(request);
    ViewData["Providers"] = hrdIdentityProviders;
    return View();
}

这将失败,因为 FederatedAuthentication.WSFederationAuthenticationModule 为空。

使用 VS 2012,我运行了新的身份和访问向导(它似乎取代了旧的 STS 对话框)。这给了我一个 FederationMetadata 文件夹,它看起来是正确的,并且对我的 Web.Config 进行了一些修改。特别是,模块部分如下所示:
<system.webServer>
<validation validateIntegratedModeConfiguration="false" />
<modules runAllManagedModulesForAllRequests="true">
  <add name="WSFederationAuthenticationModule" type="System.IdentityModel.Services.WSFederationAuthenticationModule, System.IdentityModel.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="managedHandler" />
  <add name="SessionAuthenticationModule" type="System.IdentityModel.Services.SessionAuthenticationModule, System.IdentityModel.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="managedHandler" />
</modules>

看到 SO 回答 89371238926099 后,我还添加了以下内容:
 <httpModules>
  <add name="WSFederationAuthenticationModule" type="Microsoft.IdentityModel.Web.WSFederationAuthenticationModule, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</httpModules>

最后,我的 nuget 包配置显示 Microsoft.IdentityModel,MVC 应用程序正确引用了它:
<packages>
  <package id="Microsoft.IdentityModel" version="6.1.7600.16394" targetFramework="net45" />
</packages>

我还在social.msdn 上看到了this question,这似乎表明确实需要运行STS 对话框。

任何人都可以解释为什么 FederatedAuthentication.WSFederationAuthenticationModule 会为空,我能做些什么来阻止这种情况发生?

最佳答案

我设法自己解决了这个问题,并且由于在 SO 上有一些与此类似的未解决问题,因此我将保留这个问题并发布我自己的答案。

问题与将 MVC 应用程序升级到 .NET 4.5 有关。 WIF 的大部分功能保持不变(至少在表面上),但这些类都已移至不同的程序集。我按照此处的迁移指南解决了我的问题:http://msdn.microsoft.com/en-us/library/jj157089.aspx

最重要的是删除对 Microsoft.IdentityModel 包 (v 3.5.0) 的旧引用,并确保它们被替换为对 System.IdentityModelSystem.IdentityModel.Services dll 的类似引用,它们应该是 4.0 版,并且来自 GAC 而不是外部包裹。

我的修复步骤是:

  • 清除我添加到 Web.Config 的所有垃圾,并使用默认的 MVC 配置文件重新开始。
  • 删除 Microsoft.IdentityModel 包并取消引用 dll
  • 在 VS 2012 中运行访问和身份向导
  • System.IdentityModel.Services.WSFederationAuthenticationModule
  • 中复制来自 <system.webServer><modules><system.web><httpModules> 引用
  • 添加<authentication mode="Forms"><forms loginUrl="~/Account/LogOn" /></authentication>
  • 编译、测试、跳舞快乐的小吉格...

  • 这让原来的 WIF3.5/MVC3 Code Sample 在 .NET 4.5 下工作

    10-08 16:51