Class MessageImpl
- java.lang.Object
-
- jakarta.xml.soap.SOAPMessage
-
- com.sun.xml.messaging.saaj.soap.MessageImpl
-
- All Implemented Interfaces:
SOAPConstants
- Direct Known Subclasses:
Message1_1Impl,Message1_2Impl
public abstract class MessageImpl extends SOAPMessage implements SOAPConstants
The message implementation for SOAP messages with attachments. Messages for specific profiles will likely extend this MessageImpl class and add more value for that particular profile.- Author:
- Anil Vijendran (akv@eng.sun.com), Rajiv Mordani (rajiv.mordani@sun.com), Manveen Kaur (manveen.kaur@sun.com)
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanacceptFastInfosetTrue if the Accept header of this message includes application/fastinfosetprotected FinalArrayList<AttachmentPart>attachmentsprotected booleanattachmentsInitializedstatic StringCONTENT_IDstatic StringCONTENT_LOCATIONprotected ContentTypecontentTypeprotected static intFI_ENCODED_FLAGprotected MimeHeadersheadersprotected booleanisFastInfosetTrue if this part is encoded using Fast Infoset.static StringLAZY_SOAP_BODY_PARSINGprotected intmessageByteCountprotected byte[]messageBytesprotected static intMIME_MULTIPART_FLAGprotected static intMIME_MULTIPART_XOP_SOAP1_1_FLAGprotected static intMIME_MULTIPART_XOP_SOAP1_2_FLAGprotected MimeMultipartmmpprotected MimeMultipartmultiPartprotected static intPLAIN_XML_FLAGprotected Map<String,Object>propertiesstatic StringSAAJ_MIME_SOAP_BODY_PART_SIZE_LIMITprotected booleansavedprotected static intSOAP1_1_FLAGprotected static intSOAP1_2_FLAGprotected SOAPPartImplsoapPartImplprotected static intXOP_FLAG-
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
Constructors Modifier Constructor Description protectedMessageImpl()Construct 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
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanacceptFastInfoset()voidaddAttachmentPart(AttachmentPart attachment)Adds the givenAttachmentPartobject to thisSOAPMessageobject.intcountAttachments()Gets a count of the number of attachments in this message.AttachmentPartcreateAttachmentPart()Creates a new emptyAttachmentPartobject.StringgetAction()AttachmentPartgetAttachment(SOAPElement element)Returns anAttachmentPartobject that is associated with an attachment that is referenced by thisSOAPElementornullif no such attachment exists.Iterator<AttachmentPart>getAttachments()Retrieves all theAttachmentPartobjects that are part of thisSOAPMessageobject.Iterator<AttachmentPart>getAttachments(MimeHeaders headers)Retrieves all theAttachmentPartobjects that have header entries that match the specified headers.StringgetBaseType()StringgetCharset()StringgetContentDescription()Retrieves a description of thisSOAPMessageobject's content.StringgetContentType()protected abstract StringgetExpectedAcceptHeader()protected abstract StringgetExpectedContentType()MimeHeadersgetMimeHeaders()Returns all the transport-specific MIME headers for thisSOAPMessageobject in a transport-independent fashion.ObjectgetProperty(String property)Retrieves value of the specified property.SOAPBodygetSOAPBody()Gets the SOAP Body contained in thisSOAPMessageobject.SOAPHeadergetSOAPHeader()Gets the SOAP Header contained in thisSOAPMessageobject.abstract SOAPPartgetSOAPPart()Gets the SOAP part of thisSOAPMessageobject.protected abstract booleanisCorrectSoapVersion(int contentTypeId)booleanisFastInfoset()booleanisLazySoapBodyParsing()protected static booleanisSoap1_1Content(int stat)protected static booleanisSoap1_2Content(int stat)Check whether it is SOAP 1.2 content.voidremoveAllAttachments()Removes allAttachmentPartobjects that have been added to thisSOAPMessageobject.voidremoveAttachments(MimeHeaders headers)Removes all theAttachmentPartobjects that have header entries that match the specified headers.voidsaveChanges()Updates thisSOAPMessageobject with all the changes that have been made to it.booleansaveRequired()Indicates whether thisSOAPMessageobject needs to have the methodsaveChangescalled on it.voidsetAction(String action)voidsetBaseType(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 Detail
-
CONTENT_ID
public static final String CONTENT_ID
- See Also:
- Constant Field Values
-
CONTENT_LOCATION
public static final String CONTENT_LOCATION
- See Also:
- Constant Field Values
-
PLAIN_XML_FLAG
protected static final int PLAIN_XML_FLAG
- See Also:
- Constant Field Values
-
MIME_MULTIPART_FLAG
protected static final int MIME_MULTIPART_FLAG
- See Also:
- Constant Field Values
-
SOAP1_1_FLAG
protected static final int SOAP1_1_FLAG
- See Also:
- Constant Field Values
-
SOAP1_2_FLAG
protected static final int SOAP1_2_FLAG
- See Also:
- Constant Field Values
-
MIME_MULTIPART_XOP_SOAP1_1_FLAG
protected static final int MIME_MULTIPART_XOP_SOAP1_1_FLAG
- See Also:
- Constant Field Values
-
MIME_MULTIPART_XOP_SOAP1_2_FLAG
protected static final int MIME_MULTIPART_XOP_SOAP1_2_FLAG
- See Also:
- Constant Field Values
-
XOP_FLAG
protected static final int XOP_FLAG
- See Also:
- Constant Field Values
-
FI_ENCODED_FLAG
protected static final int FI_ENCODED_FLAG
- See Also:
- Constant Field Values
-
headers
protected MimeHeaders headers
-
contentType
protected ContentType contentType
-
soapPartImpl
protected SOAPPartImpl soapPartImpl
-
attachments
protected FinalArrayList<AttachmentPart> attachments
-
saved
protected boolean saved
-
messageBytes
protected byte[] messageBytes
-
messageByteCount
protected int messageByteCount
-
multiPart
protected MimeMultipart multiPart
-
attachmentsInitialized
protected boolean attachmentsInitialized
-
isFastInfoset
protected boolean isFastInfoset
True if this part is encoded using Fast Infoset. MIME -> application/fastinfoset
-
acceptFastInfoset
protected boolean acceptFastInfoset
True if the Accept header of this message includes application/fastinfoset
-
mmp
protected MimeMultipart mmp
-
LAZY_SOAP_BODY_PARSING
public static final String LAZY_SOAP_BODY_PARSING
- See Also:
- Constant Field Values
-
SAAJ_MIME_SOAP_BODY_PART_SIZE_LIMIT
public static final String SAAJ_MIME_SOAP_BODY_PART_SIZE_LIMIT
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
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
protected MessageImpl(SOAPMessage msg)
Shallow copy.- Parameters:
msg- SoapMessage
-
MessageImpl
protected MessageImpl(MimeHeaders headers, 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- 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 Detail
-
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
public Object getProperty(String property)
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
public void setProperty(String property, Object value)
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
protected abstract String getExpectedContentType()
-
getExpectedAcceptHeader
protected abstract String getExpectedAcceptHeader()
-
getMimeHeaders
public MimeHeaders 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
public String getContentType()
-
setContentType
public void setContentType(String type)
-
getBaseType
public String getBaseType()
-
setBaseType
public void setBaseType(String type)
-
getAction
public String getAction()
-
setAction
public void setAction(String action)
-
getCharset
public String getCharset()
-
setCharset
public void setCharset(String charset)
-
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
public String 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:
SOAPMessage.setContentDescription(java.lang.String)
-
setContentDescription
public void setContentDescription(String description)
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:
SOAPMessage.getContentDescription()
-
getSOAPPart
public abstract SOAPPart 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
public void addAttachmentPart(AttachmentPart attachment)
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
public Iterator<AttachmentPart> 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
public Iterator<AttachmentPart> getAttachments(MimeHeaders headers)
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
public void removeAttachments(MimeHeaders headers)
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
public AttachmentPart 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
public AttachmentPart getAttachment(SOAPElement element) throws SOAPException
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
public void saveChanges() throws SOAPExceptionDescription 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
public void writeTo(OutputStream out) throws SOAPException, IOException
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
public SOAPBody getSOAPBody() throws SOAPException
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
public SOAPHeader getSOAPHeader() throws SOAPException
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)
-
-