zoukankan      html  css  js  c++  java
  • Migrating an ASP.NET MVC application to ADFS authentication

    I recently built an ASP.NET application at work to help track internal use of our products. It's been really well received, but only a few days after launch one of our managers came over and asked if we could move the site to Azure so that people didn't need to be in the office or on the VPN. Getting sites published on Azure itself is fairly easy with the publishing tools in Visual Studio - but dealing with authentication itself is a bit more difficult. The site uses Windows authentication - not something suitable for use on Azure.

    There seem to be a few options when migrating away:

    * Windows Azure Active Directory (effectively replicate your AD into Azure)
    * Azure Access Control Services (now deprecated)
    * On premise ADFS (can be made public for authentication outside the office)

    Given ACS is deprecated and we already had an ADFS server I went down the ADFS route. It's not as easy as it should be - you can't change the authentication option easily in VS 2013 after you've created a project. Here's how I did it:

    (Throughout the following, replace with the hostname of your application and with the hostname of your ADFS server)

    Open your web.config file

    Add the following to (or create if necessary) the configSections element:

    <configSections>
    <section name="system.identityModel" type="System.IdentityModel.Configuration.SystemIdentityModelSection, System.IdentityModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
    <section name="system.identityModel.services" type="System.IdentityModel.Services.Configuration.SystemIdentityModelServicesSection, System.IdentityModel.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
    </configSections>

    Add the following to (or create if necessary) the appSettings element:

    <appSettings>
    <add key="ida:FederationMetadataLocation" value="https://<sts.local>/federationmetadata/2007-06/federationmetadata.xml" />
    <add key="ida:Realm" value="https://<app.local>/" />
    <add key="ida:AudienceUri" value="https://<app.local>/" />
    </appSettings>

    Change the authentication mode to None:

    <authentication mode="None" />

    Add the following configuration sections:

    <system.webServer>
    <modules>
    <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>
    </system.webServer>
    <system.identityModel>
    <identityConfiguration>
    <audienceUris>
    <add value="https://<app.local>/" />
    </audienceUris>
    <securityTokenHandlers>
    <add type="System.IdentityModel.Services.Tokens.MachineKeySessionSecurityTokenHandler, System.IdentityModel.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    <remove type="System.IdentityModel.Tokens.SessionSecurityTokenHandler, System.IdentityModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
    </securityTokenHandlers>
    <certificateValidation certificateValidationMode="None" />
    <issuerNameRegistry type="System.IdentityModel.Tokens.ValidatingIssuerNameRegistry, System.IdentityModel.Tokens.ValidatingIssuerNameRegistry">
    <authority name="http://<sts.local>/adfs/services/trust">
    <keys>
    <add thumbprint="<thumbprint>" />
    </keys>
    <validIssuers>
    <add name="http://<sts.local>/adfs/services/trust" />
    </validIssuers>
    </authority>
    </issuerNameRegistry>
    </identityConfiguration>
    </system.identityModel>
    <system.identityModel.services>
    <federationConfiguration>
    <cookieHandler requireSsl="true" />
    <wsFederation passiveRedirectEnabled="true" issuer="https://<sts.local>/adfs/ls/" realm="https://<app.local>/" requireHttps="true" />
    </federationConfiguration>
    </system.identityModel.services>

    Add the following references

    System.IdentityModel
    System.IdentityModel.Services
    System.IdentityModel.Tokens.ValidatingIssuer

    You now need to register your app with the ADFS server as a "relying party"

  • 相关阅读:
    使用Kuboard界面在k8s上部署SpringCloud项目
    改造项目使用的Dockerfile文件
    在Kuboard上安装 Ingress Controller
    解决nexus仓库只能拉取不能推送的问题
    Logstash:运用 memcache 过滤器进行大规模的数据丰富
    Docker Compose配置文件详解(V3)
    Dockerfile 和 docker-compose.yml的区别
    实战---在Portainer中编排docker-compose.yml文件
    ctk-获取MANIFEST.MF中的数据
    继承时的析构函数
  • 原文地址:https://www.cnblogs.com/kiracn/p/4564655.html
Copyright © 2011-2022 走看看