2016-01-22 91 views
0

有沒有辦法將LDAP配置爲SSO的IDP提供程序。 我使用了spring saml演示項目(顯示sso圈子爲idp提供者),並能夠使用SSO配置兩個應用程序(sps)。在春季配置SAML與LDAP

現在,我想使用LDAP來填充用戶數據(用於身份驗證和身份驗證)。有沒有一個很好的演示或教程來學習和遵循?

在此先感謝

回答

0

我不能說我使用SAML(所以不能到說話),但我用在Spring配置我的LDAP(AD)以下。

<security:ldap-server 
    url="${ldap.url}" 
    manager-dn="${ldap.manager.user}" 
    manager-password="${ldap.manager.password}" 
/> 

<security:authentication-manager> 
    <security:ldap-authentication-provider 
     user-search-base="${ldap.search.user.base}" 
     user-search-filter="${ldap.search.user.filter}" 
     group-search-filter="${ldap.search.group.base}" 
     group-role-attribute="${ldap.search.group.filter}" 
     group-search-base="${ldap.search.group.attribute}" 
    /> 
</security:authentication-manager> 
+0

謝謝。我已經在我的應用程序中設置了此LDAP。但是,我希望IDP使用此詳細信息進行身份驗證和授權。目前使用註冊期間提供的憑據IDP。 –

+0

我使用Shibboleth作爲IDP並在login.config文件中配置了LDAP。現在它按照需要工作:) –