- All Implemented Interfaces:
SOAPConstants
- Direct Known Subclasses:
Message1_1Impl,Message1_2Impl
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanTrue if the Accept header of this message includes application/fastinfosetprotected FinalArrayList<AttachmentPart> protected booleanstatic final Stringstatic final Stringprotected ContentTypeprotected static final intprotected MimeHeadersprotected booleanTrue if this part is encoded using Fast Infoset.static final Stringprotected intprotected byte[]protected static final intprotected static final intprotected static final intprotected MimeMultipartprotected MimeMultipartprotected static final intstatic final Stringprotected booleanprotected static final intprotected static final intprotected SOAPPartImplprotected static final intFields inherited from class jakarta.xml.soap.SOAPMessage
CHARACTER_SET_ENCODING, WRITE_XML_DECLARATIONFields 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
ConstructorsModifierConstructorDescriptionprotectedConstruct a new message.protectedMessageImpl(boolean isFastInfoset, boolean acceptFastInfoset) Construct a new message.protectedMessageImpl(MimeHeaders headers, ContentType contentType, int stat, InputStream in) Construct a message from an input stream.protectedMessageImpl(MimeHeaders headers, ContentType ct, int stat, XMLStreamReader reader) protectedMessageImpl(MimeHeaders headers, InputStream in) Construct a message from an input stream.protectedMessageImpl(SOAPMessage msg) Shallow copy. -
Method Summary
Modifier and TypeMethodDescriptionbooleanvoidaddAttachmentPart(AttachmentPart attachment) Adds the givenAttachmentPartobject to thisSOAPMessageobject.intGets a count of the number of attachments in this message.Creates a new emptyAttachmentPartobject.getAttachment(SOAPElement element) Returns anAttachmentPartobject that is associated with an attachment that is referenced by thisSOAPElementornullif no such attachment exists.Retrieves all theAttachmentPartobjects that are part of thisSOAPMessageobject.getAttachments(MimeHeaders headers) Retrieves all theAttachmentPartobjects that have header entries that match the specified headers.Retrieves a description of thisSOAPMessageobject's content.protected abstract Stringprotected abstract StringReturns all the transport-specific MIME headers for thisSOAPMessageobject in a transport-independent fashion.getProperty(String property) Retrieves value of the specified property.Gets the SOAP Body contained in thisSOAPMessageobject.Gets the SOAP Header contained in thisSOAPMessageobject.abstract SOAPPartGets the SOAP part of thisSOAPMessageobject.protected abstract booleanisCorrectSoapVersion(int contentTypeId) booleanbooleanprotected static booleanisSoap1_1Content(int stat) protected static booleanisSoap1_2Content(int stat) Check whether it is SOAP 1.2 content.voidRemoves allAttachmentPartobjects that have been added to thisSOAPMessageobject.voidremoveAttachments(MimeHeaders headers) Removes all theAttachmentPartobjects that have header entries that match the specified headers.voidUpdates thisSOAPMessageobject with all the changes that have been made to it.booleanIndicates whether thisSOAPMessageobject needs to have the methodsaveChangescalled on it.voidvoidsetBaseType(String type) voidsetCharset(String charset) voidsetContentDescription(String description) Sets the description of thisSOAPMessageobject's content with the given description.voidsetContentType(String type) voidsetIsFastInfoset(boolean value) voidsetLazyAttachments(boolean flag) voidsetProperty(String property, Object value) Associates the specified value with the specified property.voidwriteTo(OutputStream out) Writes thisSOAPMessageobject 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:SOAPMessageRetrieves value of the specified property.- Overrides:
getPropertyin classSOAPMessage- Parameters:
property- the name of the property to retrieve- Returns:
- the value associated with the named property or
nullif no such property exists.
-
setProperty
Description copied from class:SOAPMessageAssociates 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_DECLARATIONandSOAPMessage.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_DECLARATIONto"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_ENCODINGdefaults to the value"utf-8"which causes the SOAP message to be encoded using UTF-8. SettingCHARACTER_SET_ENCODINGto"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:
setPropertyin 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:SOAPMessageReturns all the transport-specific MIME headers for thisSOAPMessageobject in a transport-independent fashion.- Specified by:
getMimeHeadersin classSOAPMessage- Returns:
- a
MimeHeadersobject containing theMimeHeaderobjects
-
getContentType
-
setContentType
-
getBaseType
-
setBaseType
-
getAction
-
setAction
-
getCharset
-
setCharset
-
saveRequired
public boolean saveRequired()Description copied from class:SOAPMessageIndicates whether thisSOAPMessageobject needs to have the methodsaveChangescalled on it.- Specified by:
saveRequiredin classSOAPMessage- Returns:
trueifsaveChangesneeds to be called;falseotherwise.
-
getContentDescription
Description copied from class:SOAPMessageRetrieves a description of thisSOAPMessageobject's content.- Specified by:
getContentDescriptionin classSOAPMessage- Returns:
- a
Stringdescribing the content of this message ornullif no description has been set - See Also:
-
setContentDescription
Description copied from class:SOAPMessageSets the description of thisSOAPMessageobject's content with the given description.- Specified by:
setContentDescriptionin classSOAPMessage- Parameters:
description- aStringdescribing the content of this message- See Also:
-
getSOAPPart
Description copied from class:SOAPMessageGets the SOAP part of thisSOAPMessageobject.SOAPMessageobject contains one or more attachments, the SOAP Part must be the first MIME body part in the message.- Specified by:
getSOAPPartin classSOAPMessage- Returns:
- the
SOAPPartobject for thisSOAPMessageobject
-
removeAllAttachments
public void removeAllAttachments()Description copied from class:SOAPMessageRemoves allAttachmentPartobjects that have been added to thisSOAPMessageobject.This method does not touch the SOAP part.
- Specified by:
removeAllAttachmentsin classSOAPMessage
-
countAttachments
public int countAttachments()Description copied from class:SOAPMessageGets a count of the number of attachments in this message. This count does not include the SOAP part.- Specified by:
countAttachmentsin classSOAPMessage- Returns:
- the number of
AttachmentPartobjects that are part of thisSOAPMessageobject
-
addAttachmentPart
Description copied from class:SOAPMessageAdds the givenAttachmentPartobject to thisSOAPMessageobject. AnAttachmentPartobject must be created before it can be added to a message.- Specified by:
addAttachmentPartin classSOAPMessage- Parameters:
attachment- anattachmentPartobject that is to become part of thisSOAPMessageobject
-
getAttachments
Description copied from class:SOAPMessageRetrieves all theAttachmentPartobjects that are part of thisSOAPMessageobject.- Specified by:
getAttachmentsin classSOAPMessage- Returns:
- an iterator over all the attachments in this message
-
getAttachments
Description copied from class:SOAPMessageRetrieves all theAttachmentPartobjects that have header entries that match the specified headers. Note that a returned attachment could have headers in addition to those specified.- Specified by:
getAttachmentsin classSOAPMessage- Parameters:
headers- aMimeHeadersobject 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:SOAPMessageRemoves all theAttachmentPartobjects that have header entries that match the specified headers. Note that the removed attachment could have headers in addition to those specified.- Specified by:
removeAttachmentsin classSOAPMessage- Parameters:
headers- aMimeHeadersobject containing the MIME headers for which to search
-
createAttachmentPart
Description copied from class:SOAPMessageCreates a new emptyAttachmentPartobject. Note that the methodaddAttachmentPartmust be called with this newAttachmentPartobject as the parameter in order for it to become an attachment to thisSOAPMessageobject.- Specified by:
createAttachmentPartin classSOAPMessage- Returns:
- a new
AttachmentPartobject that can be populated and added to thisSOAPMessageobject
-
getAttachment
Description copied from class:SOAPMessageReturns anAttachmentPartobject that is associated with an attachment that is referenced by thisSOAPElementornullif no such attachment exists. References can be made via anhrefattribute as described in SOAP Messages with Attachments, or via a singleTextchild 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 viahrefattribute 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:
getAttachmentin classSOAPMessage- Parameters:
element- TheSOAPElementcontaining the reference to an Attachment- Returns:
- the referenced
AttachmentPartor null if no suchAttachmentPartexists 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:SOAPMessageUpdates thisSOAPMessageobject 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 methodsaveChangesneeds to be called explicitly in order to save the changes. The methodsaveChangesalso 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 aftersaveChangeshas been called.In addition, this method marks the point at which the data from all constituent
AttachmentPartobjects are pulled into the message.- Specified by:
saveChangesin classSOAPMessage- Throws:
SOAPException- if there was a problem saving changes to this message.
-
writeTo
Description copied from class:SOAPMessageWrites thisSOAPMessageobject 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,
writeTowrites a MIME-encoded byte stream.Note that this method does not write the transport-specific MIME Headers of the Message
- Specified by:
writeToin classSOAPMessage- Parameters:
out- theOutputStreamobject to which thisSOAPMessageobject 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:SOAPMessageGets the SOAP Body contained in thisSOAPMessageobject.- Overrides:
getSOAPBodyin classSOAPMessage- Returns:
- the
SOAPBodyobject contained by thisSOAPMessageobject - Throws:
SOAPException- if the SOAP Body does not exist or cannot be retrieved
-
getSOAPHeader
Description copied from class:SOAPMessageGets the SOAP Header contained in thisSOAPMessageobject.- Overrides:
getSOAPHeaderin classSOAPMessage- Returns:
- the
SOAPHeaderobject contained by thisSOAPMessageobject - Throws:
SOAPException- if the SOAP Header does not exist or cannot be retrieved
-
setLazyAttachments
public void setLazyAttachments(boolean flag)
-