Methods Summary |
---|
public javax.xml.soap.SOAPElement | create(javax.xml.soap.Name name)Create a SOAPElement object initialized with the
given Name object.
return soapFactory.createElement(name);
|
public javax.xml.soap.SOAPElement | create(java.lang.String localName)Create a SOAPElement object initialized with the
given local name.
return soapFactory.createElement(localName);
|
public javax.xml.soap.SOAPElement | create(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.
return soapFactory.createElement(localName, prefix, uri);
|
public static javax.xml.soap.SOAPElementFactory | newInstance()Creates a new instance of SOAPElementFactory .
try {
return new SOAPElementFactory(SOAPFactory.newInstance());
} catch (Exception ex) {
throw new SOAPException(
"Unable to create SOAP Element Factory: " + ex.getMessage());
}
|