Spring Security SAML域用户自动登录



我已经获得了spring安全SAML过滤器的应用程序。有ADFS 2.0的配置。服务器位于域外的机器上。我尝试登录我的应用程序上的用户域帐户(但窗口输入域用户主体显示)。是否有可能将此配置为自动登录用户,我们在哪个域用户上登录windows?

Thanks a log

您可以通过以下方式更改bean samlEntryPoint来配置在SAML请求中发送的自定义authnContext:

<bean id="samlEntryPoint" class="org.springframework.security.saml.SAMLEntryPoint">
    <property name="defaultProfileOptions">
        <bean class="org.springframework.security.saml.websso.WebSSOProfileOptions">
            <property name="authnContexts"
                      value="urn:federation:authentication:windows"/>
        </bean>
    </property>
</bean>

相关内容

  • 没有找到相关文章

最新更新