SSO integration with Apache

谁说我不能喝 提交于 2019-12-23 03:22:35

问题


I am trying to implement SSO for my application. My application currently runs on Tomcat application server, I heard that its not possible to implement SSO (install web agent) on application server rather we need a web server which directs the user to the application (running on application server). Is that right? Can someone confirm?


回答1:


It depend what tool / framework you use for SSO. For example, JOSSO supports Tomcat: http://www.josso.org/confluence/display/JOSSO1/Setup+JOSSO+Agent+%28SP%29. Please look in your product support matrix if Tomcat is supported.

In addition there is SSO feature in Tomcat that allows to perform SSO between application deployed in Tomcat: http://tomcat.apache.org/tomcat-7.0-doc/config/host.html#Single_Sign_On




回答2:


Since our SSO provider didn't support tomcat application server, I integrated the Apache webserver with tomcat application server using mod_jk. The SSO module was loaded to Apache webserver which acts as a middle layer between User and tomcat application server. User first access the application via the webserver IP address which does the authentication, once the authentication is complete it routes the user to the application running on Tomcat application server.



来源:https://stackoverflow.com/questions/15486849/sso-integration-with-apache

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!