javax.xml.rpc.handler.soap
Interface SOAPMessageContext
- MessageContext
- MessageContext
public interface SOAPMessageContext
The interface javax.xml.rpc.soap.SOAPMessageContext
provides access to the SOAP message for either RPC request or
response. The javax.xml.soap.SOAPMessage
specifies
the standard Java API for the representation of a SOAP 1.1 message
with attachments.
abstract SOAPMessage | getMessage() - Gets the SOAPMessage from this message context.
|
abstract String[] | getRoles() - Gets the SOAP actor roles associated with an execution
of the HandlerChain and its contained Handler instances.
|
abstract void | setMessage(SOAPMessage message) - Sets the
SOAPMessage for this message context.
|
getMessage
public abstract SOAPMessage getMessage()
Gets the SOAPMessage from this message context.
- the
SOAPMessage
; null
if no request
SOAPMessage
is present in this
SOAPMessageContext
getRoles
public abstract String[] getRoles()
Gets the SOAP actor roles associated with an execution
of the HandlerChain and its contained Handler instances.
Note that SOAP actor roles apply to the SOAP node and
are managed using HandlerChain.setRoles
and
HandlerChain.getRoles
. Handler instances in
the HandlerChain use this information about the SOAP actor
roles to process the SOAP header blocks. Note that the
SOAP actor roles are invariant during the processing of
SOAP message through the HandlerChain.
- Array of URIs for SOAP actor roles
setMessage
public abstract void setMessage(SOAPMessage message)
Sets the SOAPMessage
for this message context.
Copyright © 2005 Apache Web Services Project. All Rights Reserved.