Single Sign-On Using Tomcat

We are thinking of moving from WebSphere to Tomcat. In WebSphere, we use LTPA to achieve a single sign between different applications (running on different physical servers).

What is the best way to get single sign-on between two physical machines in Tomcat?

+4
source share
2 answers

The Tomcat SSO implementation provides a single sign between applications on the same (logical) server. However, if you want to use SSO between applications located on different servers or even different platforms, then the Tomcat SSO option will probably not truncate it.

I suggest you take a look at a more robust solution like CAS or Cloudseal . Cloudsal also has a Tomcat plugin that can simplify things for you.

+1
source

Tomcat comes with SSO implementation . Another thing you want is session replication between nodes.

0
source

All Articles