Uses of Class
javax.xml.soap.SOAPException

Packages that use SOAPException
javax.xml.soap   
org.apache.axis   
org.apache.axis.attachments   
org.apache.axis.message   
org.apache.axis.soap   
 

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(Source source)
          Sets the content of the SOAPEnvelope object with the data from the given Source object.
abstract  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 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.  
 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.
static SOAPConnectionFactory SOAPConnectionFactory.newInstance()
          Creates an instance of the default SOAPConnectionFactory object.
abstract  SOAPConnection SOAPConnectionFactory.createConnection()
          Create a new SOAPConnection.
abstract  SOAPMessage SOAPConnection.call(SOAPMessage request, java.lang.Object endpoint)
          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 mimeheaders, java.io.InputStream inputstream)
          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.
 

Uses of SOAPException in org.apache.axis
 

Methods in org.apache.axis that throw SOAPException
 void SOAPPart.setContent(Source source)
          Sets the content of the SOAPEnvelope object with the data from the given Source object.
 Source SOAPPart.getContent()
          Returns the content of the SOAPEnvelope as a JAXP Source object.
 SOAPEnvelope SOAPPart.getEnvelope()
          Gets the SOAPEnvelope object associated with this SOAPPart object.
 void Message.writeTo(java.io.OutputStream os)
          Writes this SOAPMessage object to the given output stream.
 void Message.saveChanges()
          Updates this SOAPMessage object with all the changes that have been made to it.
 

Uses of SOAPException in org.apache.axis.attachments
 

Methods in org.apache.axis.attachments that throw SOAPException
 javax.activation.DataHandler AttachmentPart.getDataHandler()
          Gets the DataHandler object for this AttachmentPart object.
 java.lang.Object AttachmentPart.getContent()
          Gets the content of this AttachmentPart object as a Java object.
 int AttachmentPart.getSize()
          Returns the number of bytes in this AttachmentPart object.
 

Uses of SOAPException in org.apache.axis.message
 

Methods in org.apache.axis.message that throw SOAPException
 void SOAPHeaderElement.setParentElement(SOAPElement parent)
           
 void SOAPHeader.setParentElement(SOAPElement parent)
           
 SOAPHeaderElement SOAPHeader.addHeaderElement(Name name)
           
 void SOAPHeader.addChild(MessageElement el)
           
 SOAPElement SOAPHeader.addChildElement(SOAPElement element)
          we have to override this to enforce that SOAPHeader immediate children are exclusively of type SOAPHeaderElement (otherwise we'll get mysterious ClassCastExceptions down the road...
 SOAPElement SOAPHeader.addChildElement(Name name)
           
 SOAPElement SOAPHeader.addChildElement(java.lang.String localName)
           
 SOAPElement SOAPHeader.addChildElement(java.lang.String localName, java.lang.String prefix)
           
 SOAPElement SOAPHeader.addChildElement(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
           
 void SOAPFault.setFaultCode(java.lang.String faultCode)
          Sets this SOAPFaultException object with the given fault code.
 void SOAPFault.setFaultActor(java.lang.String faultActor)
          Sets this SOAPFaultException object with the given fault actor.
 void SOAPFault.setFaultString(java.lang.String faultString)
          Sets the fault string for this SOAPFaultException object to the given string.
 Detail SOAPFault.addDetail()
          Creates a Detail object and sets it as the Detail object for this SOAPFaultException object.
 SOAPBody SOAPEnvelope.addBody()
          Add a soap body if one does not exist
 SOAPHeader SOAPEnvelope.addHeader()
          Add a soap header if one does not exist
 Name SOAPEnvelope.createName(java.lang.String localName)
          create a Name given the local part
 Name SOAPEnvelope.createName(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
          Create a name given local part, prefix and uri
 SOAPBody SOAPEnvelope.getBody()
          Get the soap body
 SOAPHeader SOAPEnvelope.getHeader()
          Get the soap header
 void SOAPBodyElement.setParentElement(SOAPElement parent)
           
 void SOAPBody.setParentElement(SOAPElement parent)
           
 void SOAPBody.setEncodingStyle(java.lang.String encodingStyle)
           
 SOAPBodyElement SOAPBody.addBodyElement(Name name)
           
 SOAPFault SOAPBody.addFault()
           
 void SOAPBody.addChild(MessageElement el)
           
 SOAPElement SOAPBody.addChildElement(SOAPElement element)
          we have to override this to enforce that SOAPHeader immediate children are exclusively of type SOAPHeaderElement (otherwise we'll get mysterious ClassCastExceptions down the road...)
 void MessageElement.setEncodingStyle(java.lang.String encodingStyle)
          Sets the encoding style for this SOAPElement object to one specified.
 void MessageElement.addChild(MessageElement el)
          Note that this method will log a error and no-op if there is a value (set using setObjectValue) in the MessageElement.
 void MessageElement.setObjectValue(java.lang.Object newValue)
          Sets value of this node to an Object.
 void MessageElement.setParentElement(SOAPElement parent)
           
 SOAPElement MessageElement.addChildElement(Name name)
           
 SOAPElement MessageElement.addChildElement(java.lang.String localName)
           
 SOAPElement MessageElement.addChildElement(java.lang.String localName, java.lang.String prefix)
           
 SOAPElement MessageElement.addChildElement(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
           
 SOAPElement MessageElement.addChildElement(SOAPElement element)
          The added child must be an instance of MessageElement rather than an abitrary SOAPElement otherwise a (wrapped) ClassCastException will be thrown.
 SOAPElement MessageElement.addTextNode(java.lang.String s)
          Text nodes are not supported.
 SOAPElement MessageElement.addAttribute(Name name, java.lang.String value)
           
 SOAPElement MessageElement.addNamespaceDeclaration(java.lang.String prefix, java.lang.String uri)
           
 SOAPElement DetailEntry.addTextNode(java.lang.String text)
           
 DetailEntry Detail.addDetailEntry(Name name)
          Creates a new DetailEntry object with the given name and adds it to this Detail object.
 

Uses of SOAPException in org.apache.axis.soap
 

Methods in org.apache.axis.soap that throw SOAPException
 SOAPElement SOAPFactoryImpl.createElement(Name name)
          Create a SOAPElement object initialized with the given Name object.
 SOAPElement SOAPFactoryImpl.createElement(java.lang.String localName)
          Create a SOAPElement object initialized with the given local name.
 SOAPElement SOAPFactoryImpl.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.
 Detail SOAPFactoryImpl.createDetail()
           
 Name SOAPFactoryImpl.createName(java.lang.String localName, java.lang.String prefix, java.lang.String uri)
           
 Name SOAPFactoryImpl.createName(java.lang.String localName)
           
 SOAPMessage SOAPConnectionImpl.call(SOAPMessage request, java.lang.Object endpoint)
          Sends the given message to the specified endpoint and blocks until it has returned the response.
 void SOAPConnectionImpl.close()
          Closes this SOAPConnection object.
 SOAPConnection SOAPConnectionFactoryImpl.createConnection()
          Create a new SOAPConnection.
 SOAPMessage MessageFactoryImpl.createMessage()
          Creates a new SOAPMessage object with the default SOAPPart, SOAPEnvelope, SOAPBody, and SOAPHeader objects.
 SOAPMessage MessageFactoryImpl.createMessage(MimeHeaders mimeheaders, java.io.InputStream inputstream)
          Internalizes the contents of the given InputStream object into a new SOAPMessage object and returns the SOAPMessage object.
 



Copyright © 2003 Apache Web Services Project. All Rights Reserved.