ReadMe.txt for Servlet based demo partner application
=====================================================

This SSO enabled demo partner application uses servlets and Java beans 

1. SSOPartnerServlet.java
   This servlet is the main application servlet. This servlet will redirect 
   user to the SSO server it can't find the application session cookie.
   If application session cookie is there then, it will display content for
   the user.

2. SSOSignOnServlet.java
    After authenticating the user, SSO server sends a token to the registred
    partner application with user information. This servlet will set application
    cookie using that token and redirect back to the requested aplication url
 
3. SSOPartnerLogoutServlet.java
    This servlet will clear the application session cookie to end the current 
    application session

4. SSOEnablerServletBean.java
   This bean uses SSOEnablerBean to implement SSO functionaliy
   Note: this bean is in beans directory

  
