Qt 中的 LDAP 查询
考虑在 QML 中实现 LDAP 查看器。第一步显然是创建一个可以处理 ldap 查询的 Qt 后端。我已经阅读了 rfc1823(类似 ldap 教程),但仍然不明白从哪里开始。
我对一些 Qt 代码感兴趣,这些代码可以让我开始使用一些示例 LDAP 函数,例如:
- 连接到 ldap 服务器
- 执行一些任何类型的简单查询
- 关闭连接
编辑:如果您可以将我指向任何内容,则不需要代码关于如何在 C++ / Qt 中执行此操作的教程/指南
Thinking of implementing a LDAP-viewer in QML. The first step is obviously to make a Qt back-end that can handle ldap-queries. I've read the rfc1823 (ldap tutorial of sorts), but still can't understand where to begin really.
I would be interested in some Qt code that would get me started on some sample LDAP functions, for instance :
- connect to a ldap server
- do some simple query of any type
- close the connection
Edit: code is not required if you can point me to any tutorials/guides as to how one does this in C++ / Qt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 libldap。从头开始编写客户端需要大量工作。请查看此处作为参考示例 -离开。您可以轻松将该代码与 Qt 集成。
OpenLDAP 库还有一些 C++ 示例 包括。
I suggest using libldap. Writing a client from scratch is a lot of work. Take a look here for some examples as a kick-off. You can easily integrate that code with Qt.
The OpenLDAP library also has some c++ example included.