使用 ADO 连接到 Sun LDAP

发布于 2024-11-06 03:47:42 字数 123 浏览 0 评论 0原文

我想使用 Delphi 程序连接(并获取用户组)到 Sun LDAP 服务器。 我认为 ADSI 仅适用于 Microsoft LDAP。我尝试使用 ADO,但无法连接。

有人可以展示一些代码我将如何做到这一点吗?

I want to connect (and get user's group) to a Sun LDAP server with a Delphi program.
I think ADSI works only with Microsoft LDAP. I try it with ADO, but I can't connect.

Can someone show some code how I would do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慢慢从新开始 2024-11-13 03:47:42

我认为此代码将符合要求。

ADSI 不仅仅是 LDAP,根据我的经验,使用 LDAP 客户端连接到 ActiveDirectory 比使用其他方式更容易 - 不幸的是,这正是您正在尝试做的事情。

为了帮助您入门,这里有一种对用户进行身份验证的安全方法。

  1. 使用您的服务帐户与 LDAP 服务器建立连接。如果可能,请使用 SSL 上的 LDAP 协议,LDAPS
  2. 搜索用户名(即 CN=jdoe 部分)以获取完整 DN(可分辨名称)
  3. 如果有重复结果,请在此处停止并显示错误
  4. 使用以下命令绑定到 LDAP您尝试验证的 DN 和密码。确保双方使用相同的验证方法。
  5. 如果绑定,则密码有效。
  6. 关闭您刚刚建立的连接
  7. 根据您的需要,可以保留在步骤 1 中建立的连接,也可以将其拆除。

I think this code will fit the bill.

There is more to ADSI than just LDAP, and from my experience it is easier to use LDAP client to connect to ActiveDirectory than the other way around - which is what you are trying to do, unfortunatly.

To get you started, here is a fail safe way to authenticate a user.

  1. Establish a connection with your LDAP server with your service account. If possible, use the LDAP protocol over SSL, LDAPS
  2. Search for the username (wich is the CN=jdoe part) to get the full DN (distinguished name)
  3. If you have duplicate result, stop here with an error
  4. Bind to the LDAP with the DN and password you are trying to validate. Make shure you are using the same validation method on both side.
  5. If it binds, the password is valid.
  6. Close the connection you just established
  7. Depending on your needs, either hold on to the connection you made a step 1 or tear it down, too.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文