Uses of Class
javax.wsdl.WSDLException

Packages that use WSDLException
javax.wsdl.extensions   
javax.wsdl.factory   
javax.wsdl.xml   
 

Uses of WSDLException in javax.wsdl.extensions
 

Methods in javax.wsdl.extensions that throw WSDLException
 ExtensibilityElement ExtensionRegistry.createExtension(java.lang.Class parentType, QName elementType)
          Create an instance of the type which was declared to be used to represent extensibility elements with qnames matching elementType, when intended to exist as children of the specified parentType.
 void ExtensionSerializer.marshall(java.lang.Class parentType, QName elementType, ExtensibilityElement extension, java.io.PrintWriter pw, Definition def, ExtensionRegistry extReg)
          This method serializes extension-specific instances of ExtensibilityElement into the PrintWriter.
 void UnknownExtensionSerializer.marshall(java.lang.Class parentType, QName elementType, ExtensibilityElement extension, java.io.PrintWriter pw, Definition def, ExtensionRegistry extReg)
           
 ExtensionDeserializer ExtensionRegistry.queryDeserializer(java.lang.Class parentType, QName elementType)
          Look up the deserializer for the extensibility element with the qname elementType, which was encountered as an immediate child of the element represented by the specified parentType.
 ExtensionSerializer ExtensionRegistry.querySerializer(java.lang.Class parentType, QName elementType)
          Look up the serializer to use for the extensibility element with the qname elementType, which was encountered as a child of the specified parentType.
 ExtensibilityElement UnknownExtensionDeserializer.unmarshall(java.lang.Class parentType, QName elementType, org.w3c.dom.Element el, Definition def, ExtensionRegistry extReg)
           
 ExtensibilityElement ExtensionDeserializer.unmarshall(java.lang.Class parentType, QName elementType, org.w3c.dom.Element el, Definition def, ExtensionRegistry extReg)
          This method deserializes elements into instances of classes which implement the ExtensibilityElement interface.
 

Uses of WSDLException in javax.wsdl.factory
 

Methods in javax.wsdl.factory that throw WSDLException
static WSDLFactory WSDLFactory.newInstance()
          Get a new instance of a WSDLFactory.
static WSDLFactory WSDLFactory.newInstance(java.lang.String factoryImplName)
          Get a new instance of a WSDLFactory.
static WSDLFactory WSDLFactory.newInstance(java.lang.String factoryImplName, java.lang.ClassLoader classLoader)
          Get a new instance of a WSDLFactory.
 

Uses of WSDLException in javax.wsdl.xml
 

Methods in javax.wsdl.xml that throw WSDLException
 org.w3c.dom.Document WSDLWriter.getDocument(Definition wsdlDef)
          Return a document generated from the specified WSDL model.
 Definition WSDLReader.readWSDL(java.lang.String wsdlURI)
          Read the WSDL document accessible via the specified URI into a WSDL definition.
 Definition WSDLReader.readWSDL(java.lang.String documentBaseURI, org.w3c.dom.Document wsdlDocument)
          Read the specified WSDL document into a WSDL definition.
 Definition WSDLReader.readWSDL(java.lang.String documentBaseURI, org.w3c.dom.Element definitionsElement)
          Read the specified <wsdl:definitions> element into a WSDL definition.
 Definition WSDLReader.readWSDL(java.lang.String documentBaseURI, org.xml.sax.InputSource inputSource)
          Read a WSDL document into a WSDL definition.
 Definition WSDLReader.readWSDL(java.lang.String contextURI, java.lang.String wsdlURI)
          Read the WSDL document accessible via the specified URI into a WSDL definition.
 Definition WSDLReader.readWSDL(WSDLLocator locator)
          Read a WSDL document into a WSDL definition.
 Definition WSDLReader.readWSDL(WSDLLocator locator, org.w3c.dom.Element definitionsElement)
          Read the specified <wsdl:definitions> element into a WSDL definition.
 void WSDLWriter.writeWSDL(Definition wsdlDef, java.io.OutputStream sink)
          Write the specified WSDL definition to the specified OutputStream.
 void WSDLWriter.writeWSDL(Definition wsdlDef, java.io.Writer sink)
          Write the specified WSDL definition to the specified Writer.