c++ 是什么?相当于 JNDI?
C++ 中是否有相当于 JNDI 的东西?
我不只是在寻找 ldap 相关的库。我有兴趣了解 C++ 中可用的等效 API/库。用于查找的通用 API,其中实现可以针对 DNS、LDAP、注册表、文件系统、数据库进行处理。
Is there anything equivalent to JNDI in C++?
I am not just looking ldap related libraries. I am interested to know the equivalent API's/Libraries available in C++. Common API for look-up, where implementation can handle against DNS, LDAP, Registry, FileSystem, DB.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK 在 C++ 世界中最接近 JNDI 的可能是 ADSI/Windows。虽然它提供了一个主要用于访问各种目录的通用查找接口,但我也看到它被用于查找和读取几种其他类型的数据源。您将为数据库等编写 ADSI 提供程序。
AFAIK the closest thing to JNDI in the C++ world is perhaps ADSI/Windows. While it provides a generic lookup interface that is mainly used to access directories of various kinds, i have seen it being used to look-up and read several other kinds of data sources. You would write an ADSI provider for DB, etc.