| org.apache.axis2.jaxws.message.util.SAAJConverter
All known Subclasses: org.apache.axis2.jaxws.message.util.impl.SAAJConverterImpl,
SAAJConverter | public interface SAAJConverter (Code) | | SAAJConverter Provides Conversion between SAAJ and OM Constructed via the SAAJConverterFactory
|
createMessageFactory | public MessageFactory createMessageFactory(String namespace) throws SOAPException, WebServiceException(Code) | | Creates a MessageFactory that can support the SOAP version identified
by the specified envelope namespace.
Parameters: namespace - throws: WebServiceException - if the namespace is SOAP 1.2 and the SAAJ does not supportSOAP 1.2 or the namespace is unknown. |
toSAAJ | public SOAPElement toSAAJ(OMElement omElement, SOAPElement parent) throws WebServiceException(Code) | | Convert omElement into a SOAPElement and add it to the parent SOAPElement. This method requires
that the parent element have an ancestor that is a SOAPEnvelope. If this is not the case use the
toSAAJ(OMElement, SOAPElement, SOAPFactory) method
Parameters: omElement - Parameters: parent - SOAPElement SOAPElement that was added to the parent. throws: WebServiceException - See Also: toSAAJ(OMElement, SOAPElement, SOAPFactory) |
toSAAJ | public SOAPElement toSAAJ(OMElement omElement, SOAPElement parent, SOAPFactory sf) throws WebServiceException(Code) | | Convert omElement into a SOAPElement and add it to the parent SOAPElement.
Parameters: omElement - Parameters: parent - SOAPElement Parameters: sf - SOAPFactory that is used to create Name objects SOAPElement that was added to the parent. throws: WebServiceException - * @see toSAAJ(OMElement, SOAPElement) |
|
|