|
WebObjects 5.2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The WOSecurityDelegate interface defines methods that can be used to process
incoming and outgoing responses and requests. Delegates are not required to implement all methods in the
interface, nor must they use the implements
keyword to specify that they implement
the WOSecurityDelegate interface. Instead, they should declare and implement the necessary
subset of these methods, and use the setSecurityDelegate
method to assign the object
as the security delegate. See the WS-Security specification, which describes a proposed standard
in the Web service security space.
WOWebServiceRegistrar.setSecurityDelegate
,
WOWebServiceClient.setSecurityDelegate
Field Summary | |
static String |
ONFAULTCLIENTREQUEST
String name of the client side request undo delegate method |
static String |
ONFAULTCLIENTRESPONSE
String name of the client side response undo delegate method |
static String |
ONFAULTSERVERREQUEST
String name of the server side request undo delegate method |
static String |
ONFAULTSERVERRESPONSE
String name of the server side response undo delegate method |
static String |
PROCESSCLIENTREQUEST
String name of the client side request delegate method |
static String |
PROCESSCLIENTRESPONSE
String name of the client side response delegate method |
static String |
PROCESSSERVERREQUEST
String name of the server side request delegate method |
static String |
PROCESSSERVERRESPONSE
String name of the server side response delegate method |
Method Summary | |
void |
onFaultClientRequest(org.apache.axis.MessageContext mc)
Called during processing of an Axis fault on the client side as a request is being sent to a server. |
void |
onFaultClientResponse(org.apache.axis.MessageContext mc)
Called during processing of an Axis fault on the client as the response is being returned by the Axis stack. |
void |
onFaultServerRequest(org.apache.axis.MessageContext mc)
Called during processing of an Axis fault on the server as the request is being passed through Axis to the service method. |
void |
onFaultServerResponse(org.apache.axis.MessageContext mc)
Called during processing of an Axis fault on the server as the response is being returned through the Axis stack from the service method. |
void |
processClientRequest(org.apache.axis.MessageContext mc)
Invoked during processing of a client side request as the request is sent out the Axis stack to a Web service. |
void |
processClientResponse(org.apache.axis.MessageContext mc)
Called during processing of a client side response as the response returns to Axis from a request to a Web service. |
void |
processServerRequest(org.apache.axis.MessageContext mc)
Called during processing of a server side request as the request is being received by the Axis stack. |
void |
processServerResponse(org.apache.axis.MessageContext mc)
Called during processing of a server side response as the response is being returned by the Axis stack. |
Field Detail |
public static final String ONFAULTCLIENTREQUEST
public static final String ONFAULTCLIENTRESPONSE
public static final String ONFAULTSERVERREQUEST
public static final String ONFAULTSERVERRESPONSE
public static final String PROCESSCLIENTREQUEST
public static final String PROCESSCLIENTRESPONSE
public static final String PROCESSSERVERREQUEST
public static final String PROCESSSERVERRESPONSE
Method Detail |
public void onFaultClientRequest(org.apache.axis.MessageContext mc)
the
- MessageContext in which the fault is being processedpublic void onFaultClientResponse(org.apache.axis.MessageContext mc)
the
- MessageContext in which the fault is being processedpublic void onFaultServerRequest(org.apache.axis.MessageContext mc)
the
- MessageContext in which the fault is being processedpublic void onFaultServerResponse(org.apache.axis.MessageContext mc)
the
- MessageContext in which the fault is being processedpublic void processClientRequest(org.apache.axis.MessageContext mc) throws org.apache.axis.AxisFault
the
- MessageContext in which the request is being processedpublic void processClientResponse(org.apache.axis.MessageContext mc) throws org.apache.axis.AxisFault
the
- MessageContext in which the response is being processedan
- AxisFaultpublic void processServerRequest(org.apache.axis.MessageContext mc) throws org.apache.axis.AxisFault
the
- MessageContext in which the request is being processedan
- AxisFaultpublic void processServerResponse(org.apache.axis.MessageContext mc) throws org.apache.axis.AxisFault
the
- MessageContext in which the respones is being processed
|
Last updated Fri Feb 21 13:15:00 PST 2003. | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |