- All Implemented Interfaces:
Result
getResult()
method. The DOMResult.getNode()
method should be avoided in almost all cases.- Since:
- 1.6, SAAJ 1.3
- Author:
- XWS-Security Development Team
-
Field Summary
Fields inherited from interface javax.xml.transform.Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
-
Constructor Summary
ConstructorDescriptionCreates aSAAJResult
that will present results in the form of a SAAJ tree that supports the default (SOAP 1.1) protocol.SAAJResult
(SOAPElement rootNode) Creates aSAAJResult
that will write the results as a child node of theSOAPElement
specified.SAAJResult
(SOAPMessage message) Creates aSAAJResult
that will write the results into theSOAPPart
of the suppliedSOAPMessage
.SAAJResult
(String protocol) Creates aSAAJResult
that will present results in the form of a SAAJ tree that supports the specified protocol. -
Method Summary
Methods inherited from class javax.xml.transform.dom.DOMResult
getNextSibling, getNode, getSystemId, setNextSibling, setNode, setSystemId
-
Constructor Details
-
SAAJResult
Creates aSAAJResult
that will present results in the form of a SAAJ tree that supports the default (SOAP 1.1) protocol.This kind of
SAAJResult
is meant for use in situations where the results will be used as a parameter to a method that takes a parameter whose type, such asSOAPElement
, is drawn from the SAAJ API. When used in a transformation, the results are populated into theSOAPPart
of aSOAPMessage
that is created internally. TheSOAPPart
returned byDOMResult.getNode()
is not guaranteed to be well-formed.- Throws:
SOAPException
- if there is a problem creating aSOAPMessage
- Since:
- 1.6, SAAJ 1.3
-
SAAJResult
Creates aSAAJResult
that will present results in the form of a SAAJ tree that supports the specified protocol. TheDYNAMIC_SOAP_PROTOCOL
is ambiguous in this context and will cause this constructor to throw anUnsupportedOperationException
.This kind of
SAAJResult
is meant for use in situations where the results will be used as a parameter to a method that takes a parameter whose type, such asSOAPElement
, is drawn from the SAAJ API. When used in a transformation the results are populated into theSOAPPart
of aSOAPMessage
that is created internally. TheSOAPPart
returned byDOMResult.getNode()
is not guaranteed to be well-formed.- Parameters:
protocol
- the name of the SOAP protocol that the resulting SAAJ tree should support- Throws:
SOAPException
- if aSOAPMessage
supporting the specified protocol cannot be created- Since:
- 1.6, SAAJ 1.3
-
SAAJResult
Creates aSAAJResult
that will write the results into theSOAPPart
of the suppliedSOAPMessage
. In the normal case these results will be written using DOM APIs and, as a result, the finishedSOAPPart
will not be guaranteed to be well-formed unless the data used to create it is also well-formed. When used in a transformation the validity of theSOAPMessage
after the transformation can be guaranteed only by means outside SAAJ specification.- Parameters:
message
- the message whoseSOAPPart
will be populated as a result of some transformation or marshalling operation- Since:
- 1.6, SAAJ 1.3
-
SAAJResult
Creates aSAAJResult
that will write the results as a child node of theSOAPElement
specified. In the normal case these results will be written using DOM APIs and as a result may invalidate the structure of the SAAJ tree. This kind ofSAAJResult
should only be used when the validity of the incoming data can be guaranteed by means outside of the SAAJ specification.- Parameters:
rootNode
- the root to which the results will be appended- Since:
- 1.6, SAAJ 1.3
-
-
Method Details
-
getResult
Gets the resulting Tree that was created under the specified root Node.- Returns:
- the resulting Tree that was created under the specified root Node.
- Since:
- 1.6, SAAJ 1.3
-