Heroku 上的 LDAP 服务器?
是否可以通过 HTTP 或 HTTPS 运行 LDAP 协议?
如果是这样,有人知道可以在 Heroku.com 上运行的 Ruby LDAP 服务器吗?
Is it possible to run the LDAP protocol over HTTP or HTTPS?
If so, does anybody know of a Ruby LDAP server which can be made to run on Heroku.com?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,无法通过 HTTP(S) 运行 LDAP。 LDAP 本身就是一种二进制协议,以 ASN.1 进行描述并以 BER 进行传输。不过,DSML 提供了一些您可能感兴趣的功能。 DSML 使用 XML 表示目录服务信息。
No, it is not possible to run LDAP over HTTP(S). LDAP is a binary protocol in its own right, described in ASN.1 and transmitted in BER. However, DSML provides some functionality that may interest you. DSML represents directory services information using XML.
是的,当然有可能,我有一个 LDAP 实体作为 JSON 对象发送的系统。如果您有兴趣看一下,请告诉我。但这是 Java 而不是 Ruby,但可能会带来一些启发。
Yes, certainly it is possible, I have one where LDAP entities are sent as JSON objects. Let me know if you are interested in taking a look at it. But this is in Java not Ruby but might throw some light..