问题描述
我在Worklight中使用LDAP登录模块来验证用户身份。我在ldapProviderUrl中提供了我的一个域控制器的IP地址,一切都运行得很好。
I am using LDAP Login Module in Worklight to authenticate users. I have provided the IP Address of one of my Domain Controllers in ldapProviderUrl, and everything is working perfectly fine.
任何人都知道我是否可以在authenticationConfig.xml中添加另一个ldapProviderUrl?我已经尝试过使用通用域地址,但这根本不起作用。
Any one has any idea if I can add another ldapProviderUrl in authenticationConfig.xml ? I have already tried using the Generic Domain Address, but that is not working at all.
我正在使用Worklight 6.0.1和类com.worklight.core.auth.ext.LdapLoginModule。
I am using Worklight 6.0.1 , and class com.worklight.core.auth.ext.LdapLoginModule .
推荐答案
ldapProviderUrl参数用于为LdapContext指定java.naming.provider.url
环境属性。我相信该属性可以是
以逗号分隔的URL列表进行故障转移。尝试为ldapProviderUrl参数指定逗号分隔的
URL列表。
The ldapProviderUrl parameter is used to specify the java.naming.provider.urlenvironment property for the LdapContext. And I believe that property can bea comma separated list of URLs for failover. Try specifying a comma separatedlist of URLs for the ldapProviderUrl parameter.
这篇关于在AuthenticationConfig.xml中使用多个LDAPproviderURL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!