将 ASP.NET ActiveDirectoryMembershipProvider 与林一起使用
我正在尝试设置一个 ActiveDirectoryMembershipProvider 来对抗森林,但我似乎无法让它工作。 我们的一位 AD 管理员建议我参考全局目录,但似乎不受支持。 任何人都知道您是否可以,如果可以,您如何配置 AD 成员资格提供程序来对抗森林?
以下是我尝试过的一些排列以及由此产生的错误。
<add name="ADConnectionString1"
connectionString="LDAP://domain.org/DC=domain,DC=org:3268" />
“推荐已从 服务器”
<add name="ADConnectionString2"
connectionString="LDAP://domain.org/DC=domain,DC=org:" />
空引用异常。
<add name="ADConnectionString3"
connectionString="LDAP://domain.org" />
空引用异常
<add name="ADConnectionString4"
connectionString="LDAP://domain.org:3268" />
“GC 端口上的 LDAP 连接 不支持 Active 目录。”
<add name="ADConnectionString5"
connectionString="LDAP://domain.org:3268/DC=domain,DC=org:3268" />
“GC 端口上的 LDAP 连接 不支持 Active 目录。”
<add name="ADConnectionString6"
connectionString="LDAP://domain.org:3268/DC=domain,DC=org" />
“GC 端口上的 LDAP 连接 不支持 Active 目录。”
I'm trying to setup an ActiveDirectoryMembershipProvider to go against a Forest and I can't seem to get it working. One of our AD Admins suggested I refer to the global catalog but it seems that is not supported. Anyone know if you can and if so how do you configure the AD Membership Provider to go against a Forest?
Here are some of the permutations I've tried and the resultant errors.
<add name="ADConnectionString1"
connectionString="LDAP://domain.org/DC=domain,DC=org:3268" />
"A referral was returned from the
server"
<add name="ADConnectionString2"
connectionString="LDAP://domain.org/DC=domain,DC=org:" />
A null reference exception.
<add name="ADConnectionString3"
connectionString="LDAP://domain.org" />
A null reference exception
<add name="ADConnectionString4"
connectionString="LDAP://domain.org:3268" />
"LDAP connections on the GC port are
not supported against Active
Directory."
<add name="ADConnectionString5"
connectionString="LDAP://domain.org:3268/DC=domain,DC=org:3268" />
"LDAP connections on the GC port are
not supported against Active
Directory."
<add name="ADConnectionString6"
connectionString="LDAP://domain.org:3268/DC=domain,DC=org" />
"LDAP connections on the GC port are
not supported against Active
Directory."
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我目前无权测试 ActiveDirectoryMembershipProvider,但全局目录搜索通常使用 GC:// 名称执行。 例如,
我在 ASP.NET 中工作时的建议始终是让您的搜索过滤器等使用 LDP 或只是一个普通的控制台/winform/wpf 应用程序。
I don't have access to test an ActiveDirectoryMembershipProvider at the moment but global catalog searches are usually performed using the GC:// moniker. E.g.
My suggestion when working in ASP.NET is always to get your search filters, etc. working using LDP or just a plain console/winform/wpf app.