SSO - from java clients on windows to java server on linux -
i have java application running on windows, need authenticate java application (servlet container) running on linux. i'm unfamiliar of issue, tried googling , experminted different technologies, here things found - weren't right me:
waffle - waffle works windows server. thought redirecting incoming requests windows server login process, adds new servers need support.
spengo - doesn't if works linux, think meant windows server. (i mean os implementation - http://spnego.sourceforge.net/)
i'm using tomcat, migrating different servers, don't want specific "tomcat" solution, rather 1 can use in pure java, if possible (or servlet filter solution, can run on standard serlvet container).
there lots of patterns available. haven't mentioned how communication between java application , server.
you can servletfilter model work if communication between applications , server on http.
if communication on rmi, can intercept rmi requests on server , perform authentication/authorisation before completing request.
take @ spring security : http://docs.spring.io/spring-security/site/docs/3.0.x/reference/springsecurity.html
Comments
Post a Comment