JBoss Seam 结合使用 LDAP Indetity Store 和 JPA Identity Store
我最近一直致力于 JBoss Seam 项目 (v2.1.1),我想在该项目中针对 LDAP/AD 进行身份验证并将权限存储在自定义数据库模式中。
文档指出这是可能的,我看到了一个教科书示例,但它对我不起作用,因为数据库模式是由 Hibernate 管理的。有没有人做过类似的事情?谁能提供一个很好的例子吗?
提前致谢。 --克托佩特
I've been recently working on a JBoss Seam project (v2.1.1) where I want to autheticate against LDAP/AD and store premissions in a custom DB schema.
The documentation states that this is possible and I saw a text-book example that doesn't work for me since the DB schema is managed by Hibernate. Has anyone out there done something similar? Can anyone provide a good example?
Thanks in advance.
--ctopete
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我个人开发了一个这样的解决方案。我使用 jCifs 通过 NTLM 对所有用户进行身份验证,然后使用用户名/域对从自定义数据库加载角色和权限。
jCifs 非常容易配置,只需在 web.xml 中设置这些过滤器: http:// /jcifs.samba.org/src/docs/ntlmhttpauth.html
然后在您的 Authenticator 类中,在authenticate() 方法中使用这些来读取用户名和域:
I've personally developed a solution like this. I've used jCifs to authenticate all the users through NTLM, and then use the username/domain pair to load roles and permissions from a custom database.
jCifs is super easy to configure, just set these filters in your web.xml: http://jcifs.samba.org/src/docs/ntlmhttpauth.html
then in your Authenticator class, in the authenticate() method use these to read username and domain: