Uses of Class
jakarta.xml.soap.SOAPMessage
-
Packages that use SOAPMessage Package Description jakarta.xml.soap Provides the API for creating and building SOAP messages.jakarta.xml.ws.handler.soap This package defines APIs for SOAP message handlers. -
-
Uses of SOAPMessage in jakarta.xml.soap
Methods in jakarta.xml.soap that return SOAPMessage Modifier and Type Method Description abstract SOAPMessage
SOAPConnection. call(SOAPMessage request, Object to)
Sends the given message to the specified endpoint and blocks until it has returned the response.abstract SOAPMessage
MessageFactory. createMessage()
Creates a newSOAPMessage
object with the defaultSOAPPart
,SOAPEnvelope
,SOAPBody
, andSOAPHeader
objects.abstract SOAPMessage
MessageFactory. createMessage(MimeHeaders headers, InputStream in)
Internalizes the contents of the givenInputStream
object into a newSOAPMessage
object and returns theSOAPMessage
object.SOAPMessage
SOAPConnection. get(Object to)
Gets a message from a specific endpoint and blocks until it receives,Methods in jakarta.xml.soap with parameters of type SOAPMessage Modifier and Type Method Description abstract SOAPMessage
SOAPConnection. call(SOAPMessage request, Object to)
Sends the given message to the specified endpoint and blocks until it has returned the response.Constructors in jakarta.xml.soap with parameters of type SOAPMessage Constructor Description SAAJResult(SOAPMessage message)
Creates aSAAJResult
that will write the results into theSOAPPart
of the suppliedSOAPMessage
. -
Uses of SOAPMessage in jakarta.xml.ws.handler.soap
Methods in jakarta.xml.ws.handler.soap that return SOAPMessage Modifier and Type Method Description SOAPMessage
SOAPMessageContext. getMessage()
Gets theSOAPMessage
from this message context.Methods in jakarta.xml.ws.handler.soap with parameters of type SOAPMessage Modifier and Type Method Description void
SOAPMessageContext. setMessage(SOAPMessage message)
Sets the SOAPMessage in this message context
-