| java.lang.Object javax.xml.soap.SOAPElementFactory
SOAPElementFactory | public class SOAPElementFactory (Code) | | SOAPElementFactory is a factory for XML fragments that will eventually end up in
the SOAP part. These fragments can be inserted as children of the SOAPHeader or
SOAPBody or SOAPEnvelope .
Elements created using this factory do not have the properties of an element that lives inside
a SOAP header document. These elements are copied into the XML document tree when they are
inserted.
See Also: SOAPFactory See Also: SOAPFactory |
create | public SOAPElement create(Name name) throws SOAPException(Code) | | Create a SOAPElement object initialized with the given Name
object.
Parameters: name - a Name object with the XML name for the new element the new SOAPElement object that was created throws: SOAPException - if there is an error in creating the SOAPElement object See Also: SOAPFactory.createElement(Name) See Also: SOAPFactory.createElement(javax.xml.soap.Name) |
create | public SOAPElement create(String localName) throws SOAPException(Code) | | Create a SOAPElement object initialized with the given local name.
Parameters: localName - a String giving the local name for the new element the new SOAPElement object that was created throws: SOAPException - if there is an error in creating the SOAPElement object See Also: SOAPFactory.createElement(String) See Also: SOAPFactory.createElement(java.lang.String) |
create | public SOAPElement create(String localName, String prefix, String uri) throws SOAPException(Code) | | Create a new SOAPElement object with the given local name, prefix and uri.
Parameters: localName - a String giving the local name for the new element Parameters: prefix - the prefix for this SOAPElement Parameters: uri - a String giving the URI of the namespace to which the newelement belongs the new SOAPElement object that was created throws: SOAPException - if there is an error in creating the SOAPElement object See Also: SOAPFactory.createElement(StringStringString) See Also: SOAPFactory.createElement(java.lang.String, java.lang.String, java.lang.String) |
newInstance | public static SOAPElementFactory newInstance() throws SOAPException(Code) | | Creates a new instance of SOAPElementFactory .
a new instance of a SOAPElementFactory throws: SOAPException - if there was an error creating the default SOAPElementFactory |
|
|