在SAML
实现中,我能够向ADFS服务器(<server_name>/adfs/ls
)发送请求。它应该重定向到身份验证登录页面(<server_name>/adfs/ls/auth/integrated
)。但它没有采取单点登录页面。
我检查了web.config
文件,Windows身份验证位于顶部。
<microsoft.identityServer.web>
<localAuthenticationTypes>
<add name="Integrated" page="auth/integrated/" />
<add name="Forms" page="FormsSignIn.aspx" />
<add name="TlsClient" page="auth/sslclient/" />
<add name="Basic" page="auth/basic/" />
</localAuthenticationTypes>
<commonDomainCookie writer="" reader="" />
<context hidden="true" />
<error page="Error.aspx" />
<acceptedFederationProtocols saml="true" wsFederation="true" />
<homeRealmDiscovery page="HomeRealmDiscovery.aspx" />
<persistIdentityProviderInformation enabled="true" lifetimeInDays="30" />
<singleSignOn enabled="true" />
</microsoft.identityServer.web>
我不确定我在这里错过了什么。我正在调用来自运行Coldfusion应用程序的SP的SAML
请求到ADFS。