Package com.bea.wli.sb.sources
Class SAAJSource
java.lang.Object
com.bea.wli.sb.sources.SAAJSource
- All Implemented Interfaces:
com.bea.wli.sb.sources.ContentTypeAwareSource
,Source
public class SAAJSource
extends Object
implements Source, com.bea.wli.sb.sources.ContentTypeAwareSource
An implementation of
Source
that is backed by a SAAJ
SOAPMessage
object. A SAAJSource is typically converted
to and from MessageContextSource
and MimeSource
.
The serialization representation of this source is entirely determined
by the SOAPMessage
object. However, character-set encoding
can be modified via the TransformOptions.CHARACTER_ENCODING
options.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
an optional transform option used during transformations that tells the transformer to use the specified instance ofMessageFactory
to create instances of SAAJ messages.static final String
an optional transform option used during transformations that tells the transformer to create an instance of SOAP Message of specified SOAP protocol when transforming from some Source to SAAJSourceFields inherited from interface com.bea.wli.sb.sources.Source
DEFAULT_CHARACTER_SET_ENCODING
-
Constructor Summary
ConstructorsConstructorDescriptionSAAJSource
(SOAPMessage message) SAAJSource
(SOAPMessage message, MessageFactory factory) -
Method Summary
Modifier and TypeMethodDescriptionReturns the character encoding of the message (do we need this?)getInputStream
(TransformOptions options) Returns streaming byte-baseed representation of the Source's content.Returns the underlying SOAPMessage.void
writeTo
(OutputStream os, TransformOptions options) Serializes the Source's content to a byte-based stream.
-
Field Details
-
MESSAGE_FACTORY
an optional transform option used during transformations that tells the transformer to use the specified instance ofMessageFactory
to create instances of SAAJ messages. Be careful when using this option to pass an instance of Message Factory that suppoorts desired SOAP protocol.e.g.
MessageFactory msgFactory = isSoap12 ? MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL) : MessageFactory.newInstance(SOAPConstants.SOAP_1_1_PROTOCOL); (or something like MessageFactory msgFactory = isSoap12 ? new oracle.j2ee.ws.saaj.soap.MessageFactoryImpl("soap1.2") : new oracle.j2ee.ws.saaj.soap.MessageFactoryImpl("soap1.1"); ) options.put(SAAJSource.MESSAGE_FACTORY, msgFactory); SAAJSource saaj = ...getTransformer().transform(source, SAAJSource.class, options);
If not specified, the default platform SAAJ factory will be used.- See Also:
-
SOAP12_VERSION
an optional transform option used during transformations that tells the transformer to create an instance of SOAP Message of specified SOAP protocol when transforming from some Source to SAAJSourceThe meaning of the flag is as follows:
- if set to true - SOAP1.2 protocol version of SOAP Message will be created
- if set to false - - SOAP1.1 protocol version of SOAP Message will be created
- if not set - the caller does not know which version If not specified, the source payload will be (partially) parsed in order to determine which SOAP version it uses
- See Also:
-
-
Constructor Details
-
SAAJSource
-
SAAJSource
-
-
Method Details
-
getSOAPMessage
Returns the underlying SOAPMessage.- Returns:
-
getFactory
-
getCharacterEncoding
Returns the character encoding of the message (do we need this?)- Returns:
-
getContentType
- Specified by:
getContentType
in interfacecom.bea.wli.sb.sources.ContentTypeAwareSource
-
getInputStream
Description copied from interface:Source
Returns streaming byte-baseed representation of the Source's content. The representation of that serialization is entirely up to the Source. Note that this method may involve an internal transformation, although it should not in any way change the underlying content.- Specified by:
getInputStream
in interfaceSource
- Parameters:
options
- Options used to affect the serialization- Returns:
- an InputStream for retrieving the serialized content
- Throws:
IOException
TransformException
-
writeTo
public void writeTo(OutputStream os, TransformOptions options) throws IOException, TransformException Description copied from interface:Source
Serializes the Source's content to a byte-based stream. The representation of that serialization is entirely up to the Source. The Source is forbidden from closing the provided OutputStream, although it is allowed to flush it. However, flushing the stream should be left to the caller, if possible.Note that this method may involve an internal transformation, although it should not in any way change the underlying content.
- Specified by:
writeTo
in interfaceSource
- Parameters:
os
- the OutputStream to which serialized content will be writtenoptions
- TransformOptions used to affect the serialization- Throws:
IOException
TransformException
-