使用 Seam 和 Seam 访问 OpenLDAP 的最佳框架 JBoss AS?
我们目前正在实施一个基于网络的服务门户。 门户和服务是用 Seam 编写的,我们使用 OpenLDAP 来存储安全数据,例如用户、组和权限。 到目前为止,我们已经考虑编写自己的代码来访问 LDAP,但是是否有任何我们可以使用的现有 API?
We are currently implementing a portal to our web based services. The portal and services are written with Seam and we are using OpenLDAP to store the security data such as users, groups and permissions. So far we have looked at writing our own code to access LDAP but are there any existing APIs that we could use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您是 Spring 用户,我会研究 Spring LDAP 模块。 它们做得很漂亮; 他们遵循 JDBC 实现规定的习惯用法。 非常干净,非常好。
If you're a Spring user, I'd look into the Spring LDAP modules. They're beautifully done; they follow the idiom laid down by their JDBC implementation. Very clean, very nice.
不久前,我们为我们的网络应用程序执行了此操作,并调查了以下内容:
http://developers.sun.com/sw/docs/examples/ appserver/ldap.html
但是,我们最终只使用 Tomcat 内置的 LDAP 支持,因为基本身份验证对我们来说就足够了。
以下是我们如何在 tomcat 中设置身份验证的示例:
http://blog .mc-thias.org/?c=1&more=1&pb=1&tb=1&title=tomcat_ldap_authentication
We did this for our web application a while ago and investigated the following:
http://developers.sun.com/sw/docs/examples/appserver/ldap.html
However, we ended up just using the LDAP support built in to Tomcat, since basic authentication was enough for us.
Here is an example on how we set up out authentication in tomcat:
http://blog.mc-thias.org/?c=1&more=1&pb=1&tb=1&title=tomcat_ldap_authentication
JLDAP
JLDAP