public class CDCServlet
extends javax.servlet.http.HttpServlet
CDCServlet
is the heart of the Cross Domain Single Signon mechanism of OpenAM.
The following is the algorithm used by the program.
iPlanetDirectoryPro
from request.AuthnResponse
with the SSO cookie as the Name Identifier.Constructor and Description |
---|
CDCServlet() |
Modifier and Type | Method and Description |
---|---|
void |
doGet(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Handles the HTTP GET request.
|
void |
doPost(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Handles the HTTP POST request.
|
void |
init(javax.servlet.ServletConfig config)
Initiates the servlet.
|
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
public void init(javax.servlet.ServletConfig config) throws javax.servlet.ServletException
init
in interface javax.servlet.Servlet
init
in class javax.servlet.GenericServlet
config
- Servlet Configuration object that contains configutation
information for this servlet.javax.servlet.ServletException
- if servlet failed to initialize.public void doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
doGet
in class javax.servlet.http.HttpServlet
request
- HTTP Servlet Request object that contains the request
the client has made of the servlet.response
- an HTTP Servlet Response object that contains the
response the servlet sends to the client.javax.servlet.ServletException
- if an input or output error is detected when
the servlet handles the GET requestIOException
- if the request for the GET could not be handled.public void doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
doPost
in class javax.servlet.http.HttpServlet
request
- HTTP Servlet Request object that contains the request
the client has made of the servlet.response
- an HTTP Servlet Response object that contains the
response the servlet sends to the client.javax.servlet.ServletException
- if an input or output error is detected when
the servlet handles the GET request.IOException
- if the request for the GET could not be handled.Copyright © 2010–2025 Open Identity Platform Community. All rights reserved.