Class AssertionManagerServlet

  • All Implemented Interfaces:
    jakarta.servlet.Servlet, jakarta.servlet.ServletConfig, Serializable

    public class AssertionManagerServlet
    extends com.sun.xml.rpc.server.http.JAXRPCServlet
    The class provides remote interfaces for the AssertionManager class using JAX-RPC. Since JAX-RPC does not provide a mechanism to obtain HttpServletRequest and HttpServletResponse , it is currently extending Sun's implementation of JAXRPCServlet. This class uses the same security mechanism used by SAMLSOAPReceiver for validating the caller.
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class com.sun.xml.rpc.server.http.JAXRPCServlet

        delegate, JAXRPC_RI_PROPERTY_PUBLISH_MODEL, JAXRPC_RI_PROPERTY_PUBLISH_STATUS_PAGE, JAXRPC_RI_PROPERTY_PUBLISH_WSDL, JAXRPC_RI_RUNTIME_INFO
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void doPost​(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response)
      Overrides JAXRPCServlet's doPost method to perform the security check on the caller.
      • Methods inherited from class com.sun.xml.rpc.server.http.JAXRPCServlet

        destroy, doGet, init
      • Methods inherited from class jakarta.servlet.http.HttpServlet

        doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
      • Methods inherited from class jakarta.servlet.GenericServlet

        getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
    • Constructor Detail

      • AssertionManagerServlet

        public AssertionManagerServlet()
    • Method Detail

      • doPost

        public void doPost​(jakarta.servlet.http.HttpServletRequest request,
                           jakarta.servlet.http.HttpServletResponse response)
                    throws jakarta.servlet.ServletException
        Overrides JAXRPCServlet's doPost method to perform the security check on the caller. The logic is implemented in SAMLSOAPReceiver.
        Overrides:
        doPost in class com.sun.xml.rpc.server.http.JAXRPCServlet
        Parameters:
        request - the HttpServletRequest object.
        response - the HttpServletResponse object.
        Throws:
        jakarta.servlet.ServletException - if there is an error.