- All Implemented Interfaces:
SOAPConstants
- Direct Known Subclasses:
Message1_1Impl
,Message1_2Impl
-
Field Summary
Modifier and TypeFieldDescriptionprotected boolean
True if the Accept header of this message includes application/fastinfosetprotected FinalArrayList
<AttachmentPart> protected boolean
static final String
static final String
protected ContentType
protected static final int
protected MimeHeaders
protected boolean
True if this part is encoded using Fast Infoset.static final String
protected int
protected byte[]
protected static final int
protected static final int
protected static final int
protected MimeMultipart
protected MimeMultipart
protected static final int
static final String
protected boolean
protected static final int
protected static final int
protected SOAPPartImpl
protected static final int
Fields inherited from class jakarta.xml.soap.SOAPMessage
CHARACTER_SET_ENCODING, WRITE_XML_DECLARATION
Fields inherited from interface jakarta.xml.soap.SOAPConstants
DEFAULT_SOAP_PROTOCOL, DYNAMIC_SOAP_PROTOCOL, SOAP_1_1_CONTENT_TYPE, SOAP_1_1_PROTOCOL, SOAP_1_2_CONTENT_TYPE, SOAP_1_2_PROTOCOL, SOAP_DATAENCODINGUNKNOWN_FAULT, SOAP_ENV_PREFIX, SOAP_MUSTUNDERSTAND_FAULT, SOAP_RECEIVER_FAULT, SOAP_SENDER_FAULT, SOAP_VERSIONMISMATCH_FAULT, URI_NS_SOAP_1_1_ENVELOPE, URI_NS_SOAP_1_2_ENCODING, URI_NS_SOAP_1_2_ENVELOPE, URI_NS_SOAP_ENCODING, URI_NS_SOAP_ENVELOPE, URI_SOAP_1_2_ROLE_NEXT, URI_SOAP_1_2_ROLE_NONE, URI_SOAP_1_2_ROLE_ULTIMATE_RECEIVER, URI_SOAP_ACTOR_NEXT
-
Constructor Summary
ModifierConstructorDescriptionprotected
Construct a new message.protected
MessageImpl
(boolean isFastInfoset, boolean acceptFastInfoset) Construct a new message.protected
MessageImpl
(MimeHeaders headers, ContentType contentType, int stat, InputStream in) Construct a message from an input stream.protected
MessageImpl
(MimeHeaders headers, ContentType ct, int stat, XMLStreamReader reader) protected
MessageImpl
(MimeHeaders headers, InputStream in) Construct a message from an input stream.protected
MessageImpl
(SOAPMessage msg) Shallow copy. -
Method Summary
Modifier and TypeMethodDescriptionboolean
void
addAttachmentPart
(AttachmentPart attachment) Adds the givenAttachmentPart
object to thisSOAPMessage
object.int
Gets a count of the number of attachments in this message.Creates a new emptyAttachmentPart
object.getAttachment
(SOAPElement element) Returns anAttachmentPart
object that is associated with an attachment that is referenced by thisSOAPElement
ornull
if no such attachment exists.Retrieves all theAttachmentPart
objects that are part of thisSOAPMessage
object.getAttachments
(MimeHeaders headers) Retrieves all theAttachmentPart
objects that have header entries that match the specified headers.Retrieves a description of thisSOAPMessage
object's content.protected abstract String
protected abstract String
Returns all the transport-specific MIME headers for thisSOAPMessage
object in a transport-independent fashion.getProperty
(String property) Retrieves value of the specified property.Gets the SOAP Body contained in thisSOAPMessage
object.Gets the SOAP Header contained in thisSOAPMessage
object.abstract SOAPPart
Gets the SOAP part of thisSOAPMessage
object.protected abstract boolean
isCorrectSoapVersion
(int contentTypeId) boolean
boolean
protected static boolean
isSoap1_1Content
(int stat) protected static boolean
isSoap1_2Content
(int stat) Check whether it is SOAP 1.2 content.void
Removes allAttachmentPart
objects that have been added to thisSOAPMessage
object.void
removeAttachments
(MimeHeaders headers) Removes all theAttachmentPart
objects that have header entries that match the specified headers.void
Updates thisSOAPMessage
object with all the changes that have been made to it.boolean
Indicates whether thisSOAPMessage
object needs to have the methodsaveChanges
called on it.void
void
setBaseType
(String type) void
setCharset
(String charset) void
setContentDescription
(String description) Sets the description of thisSOAPMessage
object's content with the given description.void
setContentType
(String type) void
setIsFastInfoset
(boolean value) void
setLazyAttachments
(boolean flag) void
setProperty
(String property, Object value) Associates the specified value with the specified property.void
writeTo
(OutputStream out) Writes thisSOAPMessage
object to the given output stream.Methods inherited from class jakarta.xml.soap.SOAPMessage
createAttachmentPart, createAttachmentPart
-
Field Details
-
CONTENT_ID
- See Also:
-
CONTENT_LOCATION
- See Also:
-
PLAIN_XML_FLAG
protected static final int PLAIN_XML_FLAG- See Also:
-
MIME_MULTIPART_FLAG
protected static final int MIME_MULTIPART_FLAG- See Also:
-
SOAP1_1_FLAG
protected static final int SOAP1_1_FLAG- See Also:
-
SOAP1_2_FLAG
protected static final int SOAP1_2_FLAG- See Also:
-
MIME_MULTIPART_XOP_SOAP1_1_FLAG
protected static final int MIME_MULTIPART_XOP_SOAP1_1_FLAG- See Also:
-
MIME_MULTIPART_XOP_SOAP1_2_FLAG
protected static final int MIME_MULTIPART_XOP_SOAP1_2_FLAG- See Also:
-
XOP_FLAG
protected static final int XOP_FLAG- See Also:
-
FI_ENCODED_FLAG
protected static final int FI_ENCODED_FLAG- See Also:
-
headers
-
contentType
-
soapPartImpl
-
attachments
-
saved
protected boolean saved -
messageBytes
protected byte[] messageBytes -
messageByteCount
protected int messageByteCount -
properties
-
multiPart
-
attachmentsInitialized
protected boolean attachmentsInitialized -
isFastInfoset
protected boolean isFastInfosetTrue if this part is encoded using Fast Infoset. MIME -> application/fastinfoset -
acceptFastInfoset
protected boolean acceptFastInfosetTrue if the Accept header of this message includes application/fastinfoset -
mmp
-
LAZY_SOAP_BODY_PARSING
- See Also:
-
SAAJ_MIME_SOAP_BODY_PART_SIZE_LIMIT
- See Also:
-
-
Constructor Details
-
MessageImpl
protected MessageImpl()Construct a new message. This will be invoked before message sends. -
MessageImpl
protected MessageImpl(boolean isFastInfoset, boolean acceptFastInfoset) Construct a new message. This will be invoked before message sends.- Parameters:
isFastInfoset
- whether it is fast infosetacceptFastInfoset
- whether to accept fast infoset
-
MessageImpl
Shallow copy.- Parameters:
msg
- SoapMessage
-
MessageImpl
Construct a message from an input stream. When messages are received, there's two parts -- the transport headers and the message content in a transport specific stream.- Parameters:
headers
- MimeHeadersin
- InputStream- Throws:
SOAPExceptionImpl
- in case of I/O error
-
MessageImpl
protected MessageImpl(MimeHeaders headers, ContentType contentType, int stat, InputStream in) throws SOAPExceptionImpl Construct a message from an input stream. When messages are received, there's two parts -- the transport headers and the message content in a transport specific stream.- Parameters:
headers
- headerscontentType
- The parsed content type header from the headers variable. This is redundant parameter, but it avoids reparsing this header again.stat
- The result ofidentifyContentType(ContentType)
over the contentType parameter. This redundant parameter, but it avoids recomputing this information again.in
- input stream- Throws:
SOAPExceptionImpl
- in case of an error
-
MessageImpl
protected MessageImpl(MimeHeaders headers, ContentType ct, int stat, XMLStreamReader reader) throws SOAPExceptionImpl - Throws:
SOAPExceptionImpl
-
-
Method Details
-
isSoap1_1Content
protected static boolean isSoap1_1Content(int stat) - Parameters:
stat
- the mask value obtained fromidentifyContentType(ContentType)
- Returns:
- true if SOAP 1.1 Content
-
isSoap1_2Content
protected static boolean isSoap1_2Content(int stat) Check whether it is SOAP 1.2 content.- Parameters:
stat
- the mask value obtained fromidentifyContentType(ContentType)
- Returns:
- true if it is SOAP 1.2 content
-
isFastInfoset
public boolean isFastInfoset() -
acceptFastInfoset
public boolean acceptFastInfoset() -
setIsFastInfoset
public void setIsFastInfoset(boolean value) -
isLazySoapBodyParsing
public boolean isLazySoapBodyParsing() -
getProperty
Description copied from class:SOAPMessage
Retrieves value of the specified property.- Overrides:
getProperty
in classSOAPMessage
- Parameters:
property
- the name of the property to retrieve- Returns:
- the value associated with the named property or
null
if no such property exists.
-
setProperty
Description copied from class:SOAPMessage
Associates the specified value with the specified property. If there was already a value associated with this property, the old value is replaced.The valid property names include
SOAPMessage.WRITE_XML_DECLARATION
andSOAPMessage.CHARACTER_SET_ENCODING
. All of these standard SAAJ properties are prefixed by "jakarta.xml.soap". Vendors may also add implementation specific properties. These properties must be prefixed with package names that are unique to the vendor.Setting the property
WRITE_XML_DECLARATION
to"true"
will cause an XML Declaration to be written out at the start of the SOAP message. The default value of "false" suppresses this declaration.The property
CHARACTER_SET_ENCODING
defaults to the value"utf-8"
which causes the SOAP message to be encoded using UTF-8. SettingCHARACTER_SET_ENCODING
to"utf-16"
causes the SOAP message to be encoded using UTF-16.Some implementations may allow encodings in addition to UTF-8 and UTF-16. Refer to your vendor's documentation for details.
- Overrides:
setProperty
in classSOAPMessage
- Parameters:
property
- the property with which the specified value is to be associated.value
- the value to be associated with the specified property
-
isCorrectSoapVersion
protected abstract boolean isCorrectSoapVersion(int contentTypeId) -
getExpectedContentType
-
getExpectedAcceptHeader
-
getMimeHeaders
Description copied from class:SOAPMessage
Returns all the transport-specific MIME headers for thisSOAPMessage
object in a transport-independent fashion.- Specified by:
getMimeHeaders
in classSOAPMessage
- Returns:
- a
MimeHeaders
object containing theMimeHeader
objects
-
getContentType
-
setContentType
-
getBaseType
-
setBaseType
-
getAction
-
setAction
-
getCharset
-
setCharset
-
saveRequired
public boolean saveRequired()Description copied from class:SOAPMessage
Indicates whether thisSOAPMessage
object needs to have the methodsaveChanges
called on it.- Specified by:
saveRequired
in classSOAPMessage
- Returns:
true
ifsaveChanges
needs to be called;false
otherwise.
-
getContentDescription
Description copied from class:SOAPMessage
Retrieves a description of thisSOAPMessage
object's content.- Specified by:
getContentDescription
in classSOAPMessage
- Returns:
- a
String
describing the content of this message ornull
if no description has been set - See Also:
-
setContentDescription
Description copied from class:SOAPMessage
Sets the description of thisSOAPMessage
object's content with the given description.- Specified by:
setContentDescription
in classSOAPMessage
- Parameters:
description
- aString
describing the content of this message- See Also:
-
getSOAPPart
Description copied from class:SOAPMessage
Gets the SOAP part of thisSOAPMessage
object.SOAPMessage
object contains one or more attachments, the SOAP Part must be the first MIME body part in the message.- Specified by:
getSOAPPart
in classSOAPMessage
- Returns:
- the
SOAPPart
object for thisSOAPMessage
object
-
removeAllAttachments
public void removeAllAttachments()Description copied from class:SOAPMessage
Removes allAttachmentPart
objects that have been added to thisSOAPMessage
object.This method does not touch the SOAP part.
- Specified by:
removeAllAttachments
in classSOAPMessage
-
countAttachments
public int countAttachments()Description copied from class:SOAPMessage
Gets a count of the number of attachments in this message. This count does not include the SOAP part.- Specified by:
countAttachments
in classSOAPMessage
- Returns:
- the number of
AttachmentPart
objects that are part of thisSOAPMessage
object
-
addAttachmentPart
Description copied from class:SOAPMessage
Adds the givenAttachmentPart
object to thisSOAPMessage
object. AnAttachmentPart
object must be created before it can be added to a message.- Specified by:
addAttachmentPart
in classSOAPMessage
- Parameters:
attachment
- anattachmentPart
object that is to become part of thisSOAPMessage
object
-
getAttachments
Description copied from class:SOAPMessage
Retrieves all theAttachmentPart
objects that are part of thisSOAPMessage
object.- Specified by:
getAttachments
in classSOAPMessage
- Returns:
- an iterator over all the attachments in this message
-
getAttachments
Description copied from class:SOAPMessage
Retrieves all theAttachmentPart
objects that have header entries that match the specified headers. Note that a returned attachment could have headers in addition to those specified.- Specified by:
getAttachments
in classSOAPMessage
- Parameters:
headers
- aMimeHeaders
object containing the MIME headers for which to search- Returns:
- an iterator over all attachments that have a header that matches one of the given headers
-
removeAttachments
Description copied from class:SOAPMessage
Removes all theAttachmentPart
objects that have header entries that match the specified headers. Note that the removed attachment could have headers in addition to those specified.- Specified by:
removeAttachments
in classSOAPMessage
- Parameters:
headers
- aMimeHeaders
object containing the MIME headers for which to search
-
createAttachmentPart
Description copied from class:SOAPMessage
Creates a new emptyAttachmentPart
object. Note that the methodaddAttachmentPart
must be called with this newAttachmentPart
object as the parameter in order for it to become an attachment to thisSOAPMessage
object.- Specified by:
createAttachmentPart
in classSOAPMessage
- Returns:
- a new
AttachmentPart
object that can be populated and added to thisSOAPMessage
object
-
getAttachment
Description copied from class:SOAPMessage
Returns anAttachmentPart
object that is associated with an attachment that is referenced by thisSOAPElement
ornull
if no such attachment exists. References can be made via anhref
attribute as described in SOAP Messages with Attachments, or via a singleText
child node containing a URI as described in the WS-I Attachments Profile 1.0 for elements of schema type ref:swaRef. These two mechanisms must be supported. The support for references viahref
attribute also implies that this method should also be supported on an element that is an xop:Include element ( XOP). other reference mechanisms may be supported by individual implementations of this standard. Contact your vendor for details.- Specified by:
getAttachment
in classSOAPMessage
- Parameters:
element
- TheSOAPElement
containing the reference to an Attachment- Returns:
- the referenced
AttachmentPart
or null if no suchAttachmentPart
exists or no reference can be found in thisSOAPElement
. - Throws:
SOAPException
- if there is an error in the attempt to access the attachment
-
saveChanges
Description copied from class:SOAPMessage
Updates thisSOAPMessage
object with all the changes that have been made to it. This method is called automatically whenSOAPMessage.writeTo(OutputStream)
is called. However, if changes are made to a message that was received or to one that has already been sent, the methodsaveChanges
needs to be called explicitly in order to save the changes. The methodsaveChanges
also generates any changes that can be read back (for example, a MessageId in profiles that support a message id). All MIME headers in a message that is created for sending purposes are guaranteed to have valid values only aftersaveChanges
has been called.In addition, this method marks the point at which the data from all constituent
AttachmentPart
objects are pulled into the message.- Specified by:
saveChanges
in classSOAPMessage
- Throws:
SOAPException
- if there was a problem saving changes to this message.
-
writeTo
Description copied from class:SOAPMessage
Writes thisSOAPMessage
object to the given output stream. The externalization format is as defined by the SOAP 1.1 with Attachments specification.If there are no attachments, just an XML stream is written out. For those messages that have attachments,
writeTo
writes a MIME-encoded byte stream.Note that this method does not write the transport-specific MIME Headers of the Message
- Specified by:
writeTo
in classSOAPMessage
- Parameters:
out
- theOutputStream
object to which thisSOAPMessage
object will be written- Throws:
SOAPException
- if there was a problem in externalizing this SOAP messageIOException
- if an I/O error occurs
-
getSOAPBody
Description copied from class:SOAPMessage
Gets the SOAP Body contained in thisSOAPMessage
object.- Overrides:
getSOAPBody
in classSOAPMessage
- Returns:
- the
SOAPBody
object contained by thisSOAPMessage
object - Throws:
SOAPException
- if the SOAP Body does not exist or cannot be retrieved
-
getSOAPHeader
Description copied from class:SOAPMessage
Gets the SOAP Header contained in thisSOAPMessage
object.- Overrides:
getSOAPHeader
in classSOAPMessage
- Returns:
- the
SOAPHeader
object contained by thisSOAPMessage
object - Throws:
SOAPException
- if the SOAP Header does not exist or cannot be retrieved
-
setLazyAttachments
public void setLazyAttachments(boolean flag)
-