联合身份管理
我正在寻找一种以联合方式提取用户(例如inetOrgPerson)信息的方法。大多数情况下,此信息将来自 LDAP,但也可能来自辅助系统。我看过 Jasig 的 Person Directory(与 Spring 联姻,我们不使用它)和 ArisID(还没有使用示例)之类的东西。我在 OSGi 内部工作,想要一些已经捆绑的东西,但我愿意自己捆绑东西。我还应该考虑哪些其他 IM 库?
I'm looking for a way to pull user (eg. inetOrgPerson) information in a federated way. For the most part, this information will come from LDAP but could come from secondary systems. I've looked at things like Jasig's Person Directory (married to Spring and we don't use it) and ArisID (no examples of use, yet). I'm working inside of OSGi and would like something that is already bundled but am willing to bundle things myself. What other IM libraries out there should I consider?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从来没有找到任何东西可以满足我的需要。我创建了一个 OSGi 包,服务注册到该包中以聚合数据。这些服务由它们实现的接口定义,以不同的方式查找用户,并且可以从任何源提取数据。然后,在会话有效时,聚合器会缓存该信息。
所以,简而言之,我没有找到任何足够简单的东西来适合这个。
I never found anything to fit my needs. I created an OSGi bundle to which services get registered to aggregate data. The services are defined by the interface they implement to look up users in different ways and can draw the data from any source. The information is then cached by the aggregator while the session is valid.
So, in short, I didn't find anything out there that is simple enough to fit this.