javax.xml.soap |
|
Java Source File Name | Type | Comment |
AttachmentPart.java | Class | A single attachment to a SOAPMessage object. |
Detail.java | Interface | A container for DetailEntry objects. |
DetailEntry.java | Interface | The content for a Detail object, giving details for a SOAPFault object. |
FactoryFinder.java | Class | This class is used to locate factory classes for javax.xml.soap. |
MessageFactory.java | Class | A factory for creating SOAPMessage objects.
A JAXM client performs the following steps to create a message.
- Creates a
MessageFactory object from a ProviderConnection
object (con in the following line of code). |
MimeHeader.java | Class | An object that stores a MIME header name and its value. |
MimeHeaders.java | Class | A container for MimeHeader objects, which represent the MIME headers present in a
MIME part of a message.
This class is used primarily when an application wants to retrieve specific attachments based
on certain MIME headers and values. |
Name.java | Interface | A representation of an XML name. |
Node.java | Interface | A representation of a node (element) in a DOM representation of an XML document that provides
some tree manipulation methods. |
SAAJMetaFactory.java | Class | |
SAAJResult.java | Class | |
SOAPBody.java | Interface | An object that represents the contents of the SOAP body element in a SOAP message. |
SOAPBodyElement.java | Interface | A SOAPBodyElement object represents the contents in a SOAPBody object.
The SOAPFault interface is a SOAPBodyElement object that has been
defined.
A new SOAPBodyElement object can be created and added to a SOAPBody
object with the SOAPBody method addBodyElement . |
SOAPConnection.java | Class | A point-to-point connection that a client can use for sending messages directly to a remote party
(represented by a URL, for instance).
A client can obtain a SOAPConnection object simply by calling the following static
method.
SOAPConnection con = SOAPConnection.newInstance();
A SOAPConnection object can be used to send messages directly to a URL following the
request/response paradigm. |
SOAPConnectionFactory.java | Class | A factory for creating SOAPConnection objects. |
SOAPConstants.java | Interface | The definition of constants pertaining to the SOAP 1.1 protocol. |
SOAPElement.java | Interface | An object representing the contents in a SOAPBody object, the contents in a
SOAPHeader object, the content that can follow the SOAPBody object in a
SOAPEnvelope object, or what can follow the detail element in a
SOAPFault object. |
SOAPElementFactory.java | Class | SOAPElementFactory is a factory for XML fragments that will eventually end up in
the SOAP part.
|
SOAPEnvelope.java | Interface | The container for the SOAPHeader and SOAPBody portions of a SOAPPart object. |
SOAPException.java | Class | An exception that signals that a SOAP exception has occurred. |
SOAPFactory.java | Class | SOAPFactory is a factory for creating various objects that exist in the SOAP XML
tree.
SOAPFactory can be used to create XML fragments that will eventually end up in the
SOAP part. |
SOAPFault.java | Interface | An element in the SOAPBody object that contains error and/or status information.
This information may relate to errors in the SOAPMessage object or to problems that
are not related to the content in the message itself. |
SOAPFaultElement.java | Interface | A representation of the contents in a SOAPFault object. |
SOAPHeader.java | Interface | A representation of the SOAP header element. |
SOAPHeaderElement.java | Interface | An object representing the contents in the SOAP header part of the SOAP envelope. |
SOAPMessage.java | Class | The root class for all SOAP messages. |
SOAPPart.java | Class | The container for the SOAP-specific portion of a SOAPMessage object. |
Text.java | Interface | A representation of a node whose value is text. |