Class MexRequest
- java.lang.Object
-
- com.sun.identity.wsfederation.servlet.WSFederationAction
-
- com.sun.identity.wsfederation.servlet.MexRequest
-
public class MexRequest extends WSFederationAction
AWSFederationAction
implementation that handles incoming MEX requests related to WS-Fed Active Requestor Profile.
-
-
Field Summary
-
Fields inherited from class com.sun.identity.wsfederation.servlet.WSFederationAction
request, response
-
-
Constructor Summary
Constructors Constructor Description MexRequest(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
process()
Currently two kind of requests are supported: GET requests: The plain old WSDL is returned to the remote clients. POST requests with SOAP body: In this case a WS-Transport GetResponse is returned that embeds the WSDL in a MetadataSection element.
-
-
-
Method Detail
-
process
public void process() throws jakarta.servlet.ServletException, IOException, WSFederationException
Currently two kind of requests are supported:- GET requests: The plain old WSDL is returned to the remote clients.
- POST requests with SOAP body: In this case a WS-Transport GetResponse is returned that embeds the WSDL in a MetadataSection element.
- Specified by:
process
in classWSFederationAction
- Throws:
jakarta.servlet.ServletException
- If there was a problem whilst rendering the response.IOException
- If there was an IO error whilst working with the request or response.WSFederationException
- If there was an unrecoverable error while processing the request.
-
-