public abstract class SOAPPart extends Object implements Document, Node
The container for the SOAP-specific portion of a SOAPMessage
object. All messages are required to have a SOAP part, so when a SOAPMessage
object is created, it will automatically have a SOAPPart
object.
A SOAPPart
object is a MIME part and has the MIME headers Content-Id, Content-Location, and Content-Type. Because the value of Content-Type must be "text/xml", a SOAPPart
object automatically has a MIME header of Content-Type with its value set to "text/xml". The value must be "text/xml" because content in the SOAP part of a message must be in XML format. Content that is not of type "text/xml" must be in an AttachmentPart
object rather than in the SOAPPart
object.
When a message is sent, its SOAP part must have the MIME header Content-Type set to "text/xml". Or, from the other perspective, the SOAP part of any message that is received must have the MIME header Content-Type with a value of "text/xml".
A client can access the SOAPPart
object of a SOAPMessage
object by calling the method SOAPMessage.getSOAPPart
. The following line of code, in which message
is a SOAPMessage
object, retrieves the SOAP part of a message.
SOAPPart soapPart = message.getSOAPPart();
A SOAPPart
object contains a SOAPEnvelope
object, which in turn contains a SOAPBody
object and a SOAPHeader
object. The SOAPPart
method getEnvelope
can be used to retrieve the SOAPEnvelope
object.
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
public SOAPPart()
public abstract SOAPEnvelope getEnvelope() throws SOAPException
Gets the SOAPEnvelope
object associated with this SOAPPart
object. Once the SOAP envelope is obtained, it can be used to get its contents.
SOAPEnvelope
object for this SOAPPart
objectSOAPException
- if there is a SOAP errorpublic String getContentId()
Retrieves the value of the MIME header whose name is "Content-Id".
String
giving the value of the MIME header named "Content-Id"setContentId(java.lang.String)
public String getContentLocation()
Retrieves the value of the MIME header whose name is "Content-Location".
String
giving the value of the MIME header whose name is "Content-Location"setContentLocation(java.lang.String)
public void setContentId(String contentId)
Sets the value of the MIME header named "Content-Id" to the given String
.
contentId
- a String
giving the value of the MIME header "Content-Id"IllegalArgumentException
- if there is a problem in setting the content idgetContentId()
public void setContentLocation(String contentLocation)
Sets the value of the MIME header "Content-Location" to the given String
.
contentLocation
- a String
giving the value of the MIME header "Content-Location"IllegalArgumentException
- if there is a problem in setting the content location.getContentLocation()
public abstract void removeMimeHeader(String header)
Removes all MIME headers that match the given name.
header
- a String
giving the name of the MIME header(s) to be removedpublic abstract void removeAllMimeHeaders()
Removes all the MimeHeader
objects for this SOAPEnvelope
object.
public abstract String[] getMimeHeader(String name)
Gets all the values of the MimeHeader
object in this SOAPPart
object that is identified by the given String
.
name
- the name of the header; example: "Content-Type"String
array giving all the values for the specified headersetMimeHeader(java.lang.String, java.lang.String)
public abstract void setMimeHeader(String name, String value)
Changes the first header entry that matches the given header name so that its value is the given value, adding a new header with the given name and value if no existing header is a match. If there is a match, this method clears all existing values for the first header that matches and sets the given value instead. If more than one header has the given name, this method removes all of the matching headers after the first one.
Note that RFC822 headers can contain only US-ASCII characters.
name
- a String
giving the header name for which to searchvalue
- a String
giving the value to be set. This value will be substituted for the current value(s) of the first header that is a match if there is one. If there is no match, this value will be the value for a new MimeHeader
object.IllegalArgumentException
- if there was a problem with the specified mime header name or valuegetMimeHeader(java.lang.String)
public abstract void addMimeHeader(String name, String value)
Creates a MimeHeader
object with the specified name and value and adds it to this SOAPPart
object. If a MimeHeader
with the specified name already exists, this method adds the specified value to the already existing value(s).
Note that RFC822 headers can contain only US-ASCII characters.
name
- a String
giving the header namevalue
- a String
giving the value to be set or addedIllegalArgumentException
- if there was a problem with the specified mime header name or valuepublic abstract Iterator getAllMimeHeaders()
Retrieves all the headers for this SOAPPart
object as an iterator over the MimeHeader
objects.
Iterator
object with all of the Mime headers for this SOAPPart
objectpublic abstract Iterator getMatchingMimeHeaders(String[] names)
Retrieves all MimeHeader
objects that match a name in the given array.
names
- a String
array with the name(s) of the MIME headers to be returnedIterator
objectpublic abstract Iterator getNonMatchingMimeHeaders(String[] names)
Retrieves all MimeHeader
objects whose name does not match a name in the given array.
names
- a String
array with the name(s) of the MIME headers not to be returnedSOAPPart
object except those that match one of the names in the given array. The nonmatching MIME headers are returned as an Iterator
object.public abstract void setContent(Source source) throws SOAPException
Sets the content of the SOAPEnvelope
object with the data from the given Source
object. This Source
must contain a valid SOAP document.
source
- the javax.xml.transform.Source
object with the data to be setSOAPException
- if there is a problem in setting the sourcegetContent()
public abstract Source getContent() throws SOAPException
Returns the content of the SOAPEnvelope as a JAXP Source
object.
javax.xml.transform.Source
objectSOAPException
- if the implementation cannot convert the specified Source
objectsetContent(javax.xml.transform.Source)
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.