| javax.xml.ws.handler.soap.SOAPMessageContext
SOAPMessageContext | public interface SOAPMessageContext extends javax.xml.ws.handler.MessageContext(Code) | | The interface 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.
See Also: javax.xml.soap.SOAPMessage since: JAX-WS 2.0 |
getHeaders | public Object[] getHeaders(QName header, JAXBContext context, boolean allRoles)(Code) | | Gets headers that have a particular qualified name from the message in the
message context. Note that a SOAP message can contain multiple headers
with the same qualified name.
Parameters: header - The XML qualified name of the SOAP header(s). Parameters: context - The JAXBContext that should be used to unmarshall the header Parameters: allRoles - If true then returns headers for all SOAProles, if false then only returns headers targettedat the roles currently being played by this SOAP node, seegetRoles . An array of unmarshalled headers; returns an empty array if no message is present in this message context or no headers matchthe supplied qualified name. throws: WebServiceException - If an error occurs when using the suppliedJAXBContext to unmarshall. The cause ofthe WebServiceException is the original JAXBException . |
getMessage | public SOAPMessage getMessage()(Code) | | Gets the SOAPMessage from this message context. Modifications
to the returned SOAPMessage change the message in-place, there
is no need to susequently call setMessage .
Returns the SOAPMessage ; returns null if no SOAPMessage is present in this message context |
getRoles | public Set<String> getRoles()(Code) | | Gets the SOAP actor roles associated with an execution
of the handler chain.
Note that SOAP actor roles apply to the SOAP node and
are managed using
javax.xml.ws.soap.SOAPBinding.setRoles and
javax.xml.ws.soap.SOAPBinding.getRoles . Handler instances in
the handler chain 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 handler chain.
Array of String for SOAP actor roles |
setMessage | public void setMessage(SOAPMessage message)(Code) | | Sets the SOAPMessage in this message context
Parameters: message - SOAP message throws: WebServiceException - If any error during the settingof the SOAPMessage in this message context throws: java.lang.UnsupportedOperationException - If thisoperation is not supported |
|
|