可能重复:
在 C# 中查询 LDAP
我目前正在将一些旧的 ASP 代码从 VBScript 转换为 C#,并且卡在了使用 LDAP 连接到我们的 IBM Top Secret 环境的一块上。任何人都知道有关该过程的一些文档/资源,或者可以将相关代码转换为 C#/.NET 的吗?
Set oLdap = CreateObject("LDAPClient")
oLdap.Connect "MY SERVER NAME",1389,"cn=" & <MF Account>, <MF Password>
oLdap.Search "host=ldap,o=COMP, c=us","tssacid=<Target UserID>"
编辑我相信我越来越接近这个:
DirectoryEntry entry = new DirectoryEntry("LDAP://SERVERADDR/tssacid=acidval,tssadmingrp=acids,host=ldap,o=comp,c=us");
使用此资源解决了我的问题:
ftp://ftp.ca.com/pub/ldap/docs/ldapv3/eTrust_LDAP_Server_Administrator_Guide_30.pdf
我将在“完全重复”线程中复制资源