4

我正在尝试将 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 上看到了这个问题,这似乎表明确实需要运行 STS 对话框。

谁能解释为什么FederatedAuthentication.WSFederationAuthenticationModule会为空,以及我能做些什么来阻止这种情况发生?

4

1 回答 1

13

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

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

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

我的修复步骤是:

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

这使原始 WIF3.5 / MVC3代码示例在 .NET 4.5 下工作

于 2012-10-18T08:47:13.073 回答