vote up 0 vote down star

I'm looking at a SSO (Single Sign On) solution to fit our relatively simple use case.

Website1 - currently authenticates with database user table.
Website 2 [new] - wants to use the same authentication information and when user clicks link to website1 they shouldn't have to re-login.

Website1 is J2EE based running on Websphere. Website 2 is .Net based hosted by external company.

Ideally looking to keep the current user table as the user directory and have time out of session across applications and password expiry.

Any suggestions on 'simple' SSO solution, trying to justify it against rolling our own.

flag

75% accept rate
Sorry I should ellaborate on Website 2. It's hosted externally and is a content management system from a external company. We are paying them for the CMS services, host content, documents etc and do some intergrate work for the authentication. – scottyab Nov 3 at 13:06

4 Answers

vote up 0 vote down

A slightly more general solution that is very popular these days is OpenID. You can use your user table as an OpenID provider, and set up all your websites as OpenID consumers.

Benefits:

  • Simple
  • Widely used
  • Extensible, later you can allow more providers or add more consumers
  • Implementations in many languages
link|flag
vote up 0 vote down

I am sure below solution will meet your expectation.

http://webmoli.com/2009/08/29/single-sign-on-in-java-platform/

link|flag
vote up 2 vote down

I used the Central Authentication Service project (CAS) on a couple of projects. It was simple, easy to grasp and implement as of version 1.x.

CAS is an authentication system originally created by Yale University but now part of the Jasig Community.

Jasig Community CAS homepage

DeveloperWorks article on CAS from 2003

link|flag
vote up 0 vote down

If you can run both services under Apache, this worth a look: http://www.openfusion.com.au/labs/mod_auth_tkt/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.