Class FilterMessageImpl
- Direct Known Subclasses:
FaultMessage
FilterMessageImpl contains some other Message, which it uses
as its basic source of message data, possibly transforming the data along
the way or providing additional functionality.
The class FilterMessageImpl itself simply overrides
all the methods of Message and invokes them on
contained Message delegate. Subclasses of FilterMessageImpl
may further override some of these methods and may also provide
additional methods and fields.
- Author:
- Jitendra Kotamraju
-
Field Summary
Fields inherited from class com.sun.xml.ws.api.message.Message
attachmentSet -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidconsume()Marks the message as consumed, without actually reading the contents.copy()Creates a copy of aMessage.Gets the attachments of this message (attachments live outside a message.)It gives S:Envelope/S:Body/S:Fault/detail 's first child's name.Gets all the headers of this message.getID(AddressingVersion av, SOAPVersion sv) Retuns a unique id for the message.Retuns a unique id for the message.Gets the local name of the payload element.Gets the namespace URI of the payload element.protected booleanOptimization hint for the derived class to check if we may have some attachments.booleanReturns true if headers are present in the message.booleanReturns true if aMessagehas a payload.booleanisFault()Returns true if this message is a fault.booleanReturns true if this message is a request message for a one way operation according to the given WSDL.javax.xml.soap.SOAPMessageCreates the equivalentSOAPMessagefrom this message.javax.xml.soap.SOAPMessagereadAsSOAPMessage(Packet packet, boolean inbound) Creates the equivalentSOAPMessagefrom this message.Consumes this message including the envelope.Reads the payload as aXMLStreamReaderThis consumes the message.<T> TreadPayloadAsJAXB(com.sun.xml.bind.api.Bridge<T> bridge) Deprecated.<T> TreadPayloadAsJAXB(XMLBridge<T> bridge) Reads the payload as a Data-Bond object This consumes the message.<T> TreadPayloadAsJAXB(javax.xml.bind.Unmarshaller unmarshaller) Reads the payload as a JAXB object by using the given unmarshaller.Returns the payload as aSourceobject.voidWrites the payload to StAX.voidWrites the whole SOAP message (but not attachments) to the given writer.voidwriteTo(ContentHandler contentHandler, ErrorHandler errorHandler) Writes the whole SOAP envelope as SAX events.Methods inherited from class com.sun.xml.ws.api.message.Message
addSOAPMimeHeaders, assertOneWay, copyFrom, generateMessageID, getMethod, getOperation, getOperation, getTransportHeaders, getTransportHeaders, setMessageMedadata
-
Constructor Details
-
FilterMessageImpl
-
-
Method Details
-
hasHeaders
public boolean hasHeaders()Description copied from class:MessageReturns true if headers are present in the message.- Specified by:
hasHeadersin classMessage- Returns:
- true if headers are present.
-
getHeaders
Description copied from class:MessageGets all the headers of this message.Implementation Note
Messageimplementation is allowed to defer the construction ofMessageHeadersobject. So if you only want to check for the existence of any header element, useMessage.hasHeaders().- Specified by:
getHeadersin classMessage- Returns:
- always return the same non-null object.
-
getAttachments
Description copied from class:MessageGets the attachments of this message (attachments live outside a message.)- Overrides:
getAttachmentsin classMessage
-
hasAttachments
protected boolean hasAttachments()Description copied from class:MessageOptimization hint for the derived class to check if we may have some attachments.- Overrides:
hasAttachmentsin classMessage
-
isOneWay
Description copied from class:MessageReturns true if this message is a request message for a one way operation according to the given WSDL. False otherwise.This method is functionally equivalent as doing
getOperation(port).getOperation().isOneWay()(with proper null check and all.) But this method can sometimes work faster than that (for example, on the client side when used with SEI.)- Overrides:
isOneWayin classMessage- Parameters:
port-Messages are always created under the context of oneWSDLPortand they never go outside that context. Pass in that "governing"WSDLPortobject here. We chose to receive this as a parameter instead of keepingWSDLPortin a message, just to save the storage.The implementation of this method involves caching the return value, so the behavior is undefined if multiple callers provide different
WSDLPortobjects, which is a bug of the caller.
-
getPayloadLocalPart
Description copied from class:MessageGets the local name of the payload element.- Specified by:
getPayloadLocalPartin classMessage- Returns:
- null if a
Messagedoesn't have any payload.
-
getPayloadNamespaceURI
Description copied from class:MessageGets the namespace URI of the payload element.- Specified by:
getPayloadNamespaceURIin classMessage- Returns:
- null if a
Messagedoesn't have any payload.
-
hasPayload
public boolean hasPayload()Description copied from class:MessageReturns true if aMessagehas a payload.A message without a payload is a SOAP message that looks like:
<S:Envelope> <S:Header> ... </S:Header> <S:Body /> </S:Envelope>- Specified by:
hasPayloadin classMessage
-
isFault
public boolean isFault()Description copied from class:MessageReturns true if this message is a fault.Just a convenience method built on
Message.getPayloadNamespaceURI()andMessage.getPayloadLocalPart(). -
getFirstDetailEntryName
Description copied from class:MessageIt gives S:Envelope/S:Body/S:Fault/detail 's first child's name. Should be called for messages that have SOAP Fault.This implementation is expensive so concrete implementations are expected to override this one.
- Overrides:
getFirstDetailEntryNamein classMessage- Returns:
- first detail entry's name, if there is one else null
-
readEnvelopeAsSource
Description copied from class:MessageConsumes this message including the envelope. returns it as aSourceobject.- Specified by:
readEnvelopeAsSourcein classMessage
-
readPayloadAsSource
Description copied from class:MessageReturns the payload as aSourceobject. This consumes the message.- Specified by:
readPayloadAsSourcein classMessage- Returns:
- if there's no payload, this method returns null.
-
readAsSOAPMessage
public javax.xml.soap.SOAPMessage readAsSOAPMessage() throws javax.xml.soap.SOAPExceptionDescription copied from class:MessageCreates the equivalentSOAPMessagefrom this message. This consumes the message.- Specified by:
readAsSOAPMessagein classMessage- Throws:
javax.xml.soap.SOAPException- if there's any error while creating aSOAPMessage.
-
readAsSOAPMessage
public javax.xml.soap.SOAPMessage readAsSOAPMessage(Packet packet, boolean inbound) throws javax.xml.soap.SOAPException Description copied from class:MessageCreates the equivalentSOAPMessagefrom this message. It also uses transport specific headers from Packet during the SOAPMessage construction so thatSOAPMessage.getMimeHeaders()gives meaningful transport headers. This consumes the message.- Overrides:
readAsSOAPMessagein classMessage- Throws:
javax.xml.soap.SOAPException- if there's any error while creating aSOAPMessage.
-
readPayloadAsJAXB
public <T> T readPayloadAsJAXB(javax.xml.bind.Unmarshaller unmarshaller) throws javax.xml.bind.JAXBException Description copied from class:MessageReads the payload as a JAXB object by using the given unmarshaller. This consumes the message.- Specified by:
readPayloadAsJAXBin classMessage- Throws:
javax.xml.bind.JAXBException- If JAXB reports an error during the processing.
-
readPayloadAsJAXB
public <T> T readPayloadAsJAXB(com.sun.xml.bind.api.Bridge<T> bridge) throws javax.xml.bind.JAXBException Deprecated.Description copied from class:MessageReads the payload as a JAXB object according to the givenBridge. This consumes the message.- Specified by:
readPayloadAsJAXBin classMessage- Returns:
- null if there's no payload.
- Throws:
javax.xml.bind.JAXBException- If JAXB reports an error during the processing.
-
readPayloadAsJAXB
Description copied from class:MessageReads the payload as a Data-Bond object This consumes the message.- Specified by:
readPayloadAsJAXBin classMessage- Returns:
- null if there's no payload.
- Throws:
javax.xml.bind.JAXBException- If JAXB reports an error during the processing.
-
readPayload
Description copied from class:MessageReads the payload as aXMLStreamReaderThis consumes the message. The caller is encouraged to callXMLStreamReaderFactory.recycle(XMLStreamReader)when finished using the instance.- Specified by:
readPayloadin classMessage- Returns:
- If there's no payload, this method returns null.
Otherwise always non-null valid
XMLStreamReaderthat points to the payload tag name. - Throws:
XMLStreamException
-
consume
public void consume()Description copied from class:MessageMarks the message as consumed, without actually reading the contents.This method provides an opportunity for implementations to reuse any reusable resources needed for representing the payload.
This method may not be called more than once since it may have released the reusable resources.
-
writePayloadTo
Description copied from class:MessageWrites the payload to StAX. This method writes just the payload of the message to the writer. This consumes the message. The implementation will not writeXMLStreamWriter.writeStartDocument()norXMLStreamWriter.writeEndDocument()If there's no payload, this method is no-op.
- Specified by:
writePayloadToin classMessage- Throws:
XMLStreamException- If theXMLStreamWriterreports an error, or some other errors happen during the processing.
-
writeTo
Description copied from class:MessageWrites the whole SOAP message (but not attachments) to the given writer. This consumes the message.- Specified by:
writeToin classMessage- Throws:
XMLStreamException- If theXMLStreamWriterreports an error, or some other errors happen during the processing.
-
writeTo
Description copied from class:MessageWrites the whole SOAP envelope as SAX events.This consumes the message.
- Specified by:
writeToin classMessage- Parameters:
contentHandler- must not be nulll.errorHandler- must not be null. any error encountered during the SAX event production must be first reported to this error handler. Fatal errors can be then thrown asSAXParseException.SAXExceptions thrown fromErrorHandlershould propagate directly through this method.- Throws:
SAXException
-
copy
Description copied from class:MessageCreates a copy of aMessage.This method creates a new
Messagewhose header/payload/attachments/properties are identical to thisMessage. Once created, the createdMessageand the originalMessagebehaves independently --- adding header/ attachment to oneMessagedoesn't affect anotherMessageat all.This method does NOT consume a message.
To enable efficient copy operations, there's a few restrictions on how copied message can be used.
- The original and the copy may not be
used concurrently by two threads (this allows two
Messages to share some internal resources, such as JAXB marshallers.) Note that it's OK for the original and the copy to be processed by two threads, as long as they are not concurrent. - The copy has the same 'life scope'
as the original (this allows shallower copy, such as
JAXB beans wrapped in
JAXBMessage.)
A 'life scope' of a message created during a message processing in a pipeline is until a pipeline processes the next message. A message cannot be kept beyond its life scope. (This experimental design is to allow message objects to be reused --- feedback appreciated.)
Design Rationale
Since a
Messagebody is read-once, sometimes (such as when you do fail-over, or WS-RM) you need to create an identical copy of aMessage.The actual copy operation depends on the layout of the data in memory, hence it's best to be done by the
Messageimplementation itself.The restrictions placed on the use of copied
Messagecan be relaxed if necessary, but it will make the copy method more expensive.IMPORTANT
WHEN YOU IMPLEMENT OR CHANGE A
Message.copy()METHOD, YOU MUST USE THEMessage.copyFrom(com.sun.xml.ws.api.message.Message)METHOD IN THE IMPLEMENTATION. - The original and the copy may not be
used concurrently by two threads (this allows two
-
getID
Description copied from class:MessageRetuns a unique id for the message. The id can be used for various things, like debug assistance, logging, and MIME encoding(say for boundary).This method will check the existence of the addressing
<MessageID>header, and if present uses that value. Otherwise it generates one from UUID.random(), and return it without adding a new header. But it doesn't add a<MessageID>to the header list since we expect them to be added before calling this method.Addressing tube will go do a separate verification on inbound headers to make sure that
<MessageID>header is present when it's supposed to be.- Overrides:
getIDin classMessage- Parameters:
binding- object created byBindingID.createBinding()- Returns:
- unique id for the message
-
getID
Description copied from class:MessageRetuns a unique id for the message. -
getSOAPVersion
- Overrides:
getSOAPVersionin classMessage
-