|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SOAPException | |
javax.xml.messaging | Provides the API for using a messaging provider to send and receive SOAP messages. |
javax.xml.soap | Provides the API for creating and building SOAP messages. |
Uses of SOAPException in javax.xml.messaging |
Subclasses of SOAPException in javax.xml.messaging | |
class |
JAXMException
An exception that signals that a JAXM exception has occurred. |
Uses of SOAPException in javax.xml.soap |
Methods in javax.xml.soap that throw SOAPException | |
abstract SOAPEnvelope |
SOAPPart.getEnvelope()
Gets the SOAPEnvelope object associated with this
SOAPPart object. |
abstract void |
SOAPPart.setContent(javax.xml.transform.Source source)
Sets the content of the SOAPEnvelope object with the data from
the given Source object. |
abstract javax.xml.transform.Source |
SOAPPart.getContent()
Returns the content of the SOAPEnvelope as a JAXP Source
object. |
abstract void |
SOAPMessage.saveChanges()
Updates this SOAPMessage object with all the
changes that have been made to it. |
abstract void |
SOAPMessage.writeTo(java.io.OutputStream out)
Writes this SOAPMessage object to the given output
stream. |
SOAPHeaderElement |
SOAPHeader.addHeaderElement(Name name)
Creates a new SOAPHeaderElement object initialized with the
specified name and adds it to this SOAPHeader object. |
void |
SOAPFault.setFaultCode(java.lang.String faultCode)
Sets this SOAPFault object with the given fault code. |
void |
SOAPFault.setFaultActor(java.lang.String faultActor)
Sets this SOAPFault object with the given fault actor. |
void |
SOAPFault.setFaultString(java.lang.String faultString)
Sets the fault string for this SOAPFault object
to the given string. |
Detail |
SOAPFault.addDetail()
Creates a Detail object and sets it as the
Detail object for this SOAPFault
object. |
abstract SOAPElement |
SOAPFactory.createElement(Name name)
Create a SOAPElement object initialized with the
given Name object. |
abstract SOAPElement |
SOAPFactory.createElement(java.lang.String localName)
Create a SOAPElement object initialized with the
given local name. |
abstract SOAPElement |
SOAPFactory.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. |
abstract Detail |
SOAPFactory.createDetail()
Creates a new Detail object which serves as a container
for DetailEntry objects. |
abstract Name |
SOAPFactory.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. |
abstract Name |
SOAPFactory.createName(java.lang.String localName)
Creates a new Name object initialized with the
given local name. |
static SOAPFactory |
SOAPFactory.newInstance()
Creates a new instance of SOAPFactory . |
Name |
SOAPEnvelope.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. |
Name |
SOAPEnvelope.createName(java.lang.String localName)
Creates a new Name object initialized with the
given local name. |
SOAPHeader |
SOAPEnvelope.getHeader()
Returns the SOAPHeader object for
this SOAPEnvelope object. |
SOAPBody |
SOAPEnvelope.getBody()
Returns the SOAPBody object associated with this
SOAPEnvelope object. |
SOAPHeader |
SOAPEnvelope.addHeader()
Creates a SOAPHeader object and sets it as the
SOAPHeader object for this SOAPEnvelope
object. |
SOAPBody |
SOAPEnvelope.addBody()
Creates a SOAPBody object and sets it as the
SOAPBody object for this SOAPEnvelope
object. |
SOAPElement |
SOAPElement.addChildElement(Name name)
Creates a new SOAPElement object initialized with the
given Name object and adds the new element to this
SOAPElement object. |
SOAPElement |
SOAPElement.addChildElement(java.lang.String localName)
Creates a new SOAPElement object initialized with the
given String object and adds the new element to this
SOAPElement object. |
SOAPElement |
SOAPElement.addChildElement(java.lang.String localName,
java.lang.String prefix)
Creates a new SOAPElement object initialized with the
specified local name and prefix and adds the new element to this
SOAPElement object. |
SOAPElement |
SOAPElement.addChildElement(java.lang.String localName,
java.lang.String prefix,
java.lang.String uri)
Creates a new SOAPElement object initialized with the
specified local name, prefix, and URI and adds the new element to this
SOAPElement object. |
SOAPElement |
SOAPElement.addChildElement(SOAPElement element)
Add a SOAPElement as a child of this
SOAPElement instance. |
SOAPElement |
SOAPElement.addTextNode(java.lang.String text)
Creates a new Text object initialized with the given
String and adds it to this SOAPElement object. |
SOAPElement |
SOAPElement.addAttribute(Name name,
java.lang.String value)
Adds an attribute with the specified name and value to this SOAPElement object. |
SOAPElement |
SOAPElement.addNamespaceDeclaration(java.lang.String prefix,
java.lang.String uri)
Adds a namespace declaration with the specified prefix and URI to this SOAPElement object. |
void |
SOAPElement.setEncodingStyle(java.lang.String encodingStyle)
Sets the encoding style for this SOAPElement object
to one specified. |
SOAPElement |
SOAPElementFactory.create(Name name)
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(javax.xml.soap.Name) instead |
SOAPElement |
SOAPElementFactory.create(java.lang.String localName)
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName) instead |
SOAPElement |
SOAPElementFactory.create(java.lang.String localName,
java.lang.String prefix,
java.lang.String uri)
Deprecated. Use javax.xml.soap.SOAPFactory.createElement(String localName, String prefix, String uri) instead |
static SOAPElementFactory |
SOAPElementFactory.newInstance()
Deprecated. Creates a new instance of SOAPElementFactory . |
abstract SOAPMessage |
SOAPConnection.call(SOAPMessage request,
java.lang.Object to)
Sends the given message to the specified endpoint and blocks until it has returned the response. |
abstract void |
SOAPConnection.close()
Closes this SOAPConnection object. |
SOAPFault |
SOAPBody.addFault()
Creates a new SOAPFault object and adds it to
this SOAPBody object. |
SOAPBodyElement |
SOAPBody.addBodyElement(Name name)
Creates a new SOAPBodyElement object with the
specified name and adds it to this SOAPBody object. |
void |
Node.setParentElement(SOAPElement parent)
Sets the parent of this Node object to the given
SOAPElement object. |
static MessageFactory |
MessageFactory.newInstance()
Creates a new MessageFactory object that is an instance
of the default implementation. |
abstract SOAPMessage |
MessageFactory.createMessage()
Creates a new SOAPMessage object with the default
SOAPPart , SOAPEnvelope , SOAPBody ,
and SOAPHeader objects. |
abstract SOAPMessage |
MessageFactory.createMessage(MimeHeaders headers,
java.io.InputStream in)
Internalizes the contents of the given InputStream object into a
new SOAPMessage object and returns the SOAPMessage
object. |
DetailEntry |
Detail.addDetailEntry(Name name)
Creates a new DetailEntry object with the given
name and adds it to this Detail object. |
abstract int |
AttachmentPart.getSize()
Returns the number of bytes in this AttachmentPart
object. |
abstract java.lang.Object |
AttachmentPart.getContent()
Gets the content of this AttachmentPart object as a Java
object. |
abstract javax.activation.DataHandler |
AttachmentPart.getDataHandler()
Gets the DataHandler object for this AttachmentPart
object. |
static SOAPConnectionFactory |
SOAPConnectionFactory.newInstance()
Creates an instance of the default SOAPConnectionFactory object. |
abstract SOAPConnection |
SOAPConnectionFactory.createConnection()
Create a new SOAPConnection . |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |