JOSSO能满足这个要求吗?
我们有多个应用程序服务器和不同的应用程序,例如:server1 有 app1,server2 有 app2 等。我希望实现 JOSSO 以实现这些应用程序的单点登录。问题是,JOSSO能支持这种架构吗?或者如果没有,是否有任何其他开源单一 API 可用(在 java/j2ee 中)来满足此要求?
We have multiple application servers and with different applications, for ex: server1 has app1, server2 has app2 etc..I am looking to implement JOSSO for single sign on for these applications. Question is, can JOSSO support this kind of architecture? or if not are there any other open source single sing on APIs avaialable(in java/j2ee) for this requirement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我的公司,我用这种架构实现了 Josso。我们可能有 5 台服务器,大约有 10 个应用程序,并且身份验证完全由 JOSSO 管理。我们的大多数应用程序都使用 ASP MVC .Net,因此我必须为此编写一个代理(嵌入在客户端应用程序中),因为 Josso 不提供代理。但中央 JOSSO 网关作为 tomcat servlet 在独立服务器上运行。
所以,是的,它支持这种 oif 架构。我们使用 josso 1.8 已有两年了,然后我对其进行了调整以满足一些要求。我们没有升级到 josso 2,因为我不认为它们有什么新的非凡的新功能。
它存在其他开源,看看 CAS:http://www.jasig.org/cas这与 josso 实现非常接近,但可能更好。
In my company I implement Josso with this kind of architecture. We have may be 5 servers with more or less 10 applications and the authentication is entirely managed with JOSSO. Most of our applications use ASP MVC .Net, so I had to write an agent (embedded in the client application) for this, because Josso doesn't provides ones. But the central JOSSO gateway runs as a tomcat servlet on an independant server.
So, yes it supports this kind oif architecture. We use josso 1.8 for two years now, and then I tweak it to fit some requirements. We didn't upgrade to josso 2 because I don't think they is any new extradinary new features.
It exists other open source, have a look at CAS: http://www.jasig.org/cas which is really close to josso implementation, but may be better.