Example usage for Java javax.xml.soap SOAPFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
Detail | createDetail() Creates a new Detail object which serves as a container for DetailEntry objects. |
SOAPElement | createElement(String localName, String prefix, String uri) Creates a new SOAPElement object with the given local name, prefix and uri. |
SOAPElement | createElement(Element domElement) Creates a SOAPElement object from an existing DOM Element . |
SOAPElement | createElement(Name name) Creates a SOAPElement object initialized with the given Name object. |
SOAPElement | createElement(QName qname) Creates a SOAPElement object initialized with the given QName object. |
SOAPElement | createElement(String localName) Creates a SOAPElement object initialized with the given local name. |
SOAPFault | createFault(String reasonText, QName faultCode) Creates a new SOAPFault object initialized with the given reasonText and faultCode |
SOAPFault | createFault() Creates a new default SOAPFault object |
Name | createName(String localName, String prefix, String uri) Creates a new Name object initialized with the given local name, namespace prefix, and namespace URI. |
Name | createName(String localName) Creates a new Name object initialized with the given local name. |
SOAPFactory | newInstance() Creates a new SOAPFactory object that is an instance of the default implementation (SOAP 1.1). |
SOAPFactory | newInstance(String protocol) Creates a new SOAPFactory object that is an instance of the specified implementation, this method uses the SAAJMetaFactory to locate the implementation class and create the SOAPFactory instance. |