Methods Summary |
---|
public abstract javax.xml.soap.Detail | createDetail()Creates a new Detail object which serves as a container
for DetailEntry objects.
This factory method creates Detail objects for use in
situations where it is not practical to use the SOAPFault
abstraction.
|
public abstract javax.xml.soap.SOAPElement | createElement(javax.xml.soap.Name name)Create a SOAPElement object initialized with the
given Name object.
|
public abstract javax.xml.soap.SOAPElement | createElement(java.lang.String localName)Create a SOAPElement object initialized with the
given local name.
|
public abstract javax.xml.soap.SOAPElement | createElement(java.lang.String localName, java.lang.String prefix, java.lang.String uri)Create a new SOAPElement object with the given
local name, prefix and uri.
|
public abstract javax.xml.soap.Name | createName(java.lang.String localName, java.lang.String prefix, java.lang.String uri)Creates a new Name object initialized with the
given local name, namespace prefix, and namespace URI.
This factory method creates Name objects for use in
situations where it is not practical to use the SOAPEnvelope
abstraction.
|
public abstract javax.xml.soap.Name | createName(java.lang.String localName)Creates a new Name object initialized with the
given local name.
This factory method creates Name objects for use in
situations where it is not practical to use the SOAPEnvelope
abstraction.
|
public static javax.xml.soap.SOAPFactory | newInstance()Creates a new instance of SOAPFactory .
try {
return (SOAPFactory) FactoryFinder.find(SF_PROPERTY, DEFAULT_SF);
} catch (Exception exception) {
throw new SOAPException("Unable to create SOAP Factory: "
+ exception.getMessage());
}
|