| com.sun.jbi.wsdl2.WsdlReader
All known Subclasses: com.sun.jbi.wsdl2.impl.WsdlReader,
WsdlReader | public interface WsdlReader (Code) | | This interface defines a set of methods for reading a WSDL 2.0 document
from various XML sources.
author: Sun Microsystems, Inc. |
readDescription | Description readDescription(String wsdlURI) throws WsdlException, MalformedURLException, IOException(Code) | | Read the WSDL document accessible via the specified
URI into a WSDL definition.
Parameters: wsdlURI - The URI (can be a filename or URL) pointing to aWSDL XML definition. The WSDL document as a Description component. exception: WsdlException - if a WSDL 2.0 validity problem is foundwith the given document. exception: MalformedURLException - if the given URL is invalid. exception: IOException - if an I/O problem occurs while readingthe document. |
readDescription | Description readDescription(String contextURI, String wsdlURI) throws WsdlException, MalformedURLException, IOException(Code) | | Read the WSDL document accessible via the specified
URI into a WSDL definition.
Parameters: contextURI - The context in which to resolve the wsdlURI, if the wsdlURI is relative. Can be null, in which case it will be ignored. Parameters: wsdlURI - The URI (can be a filename or URL) pointing to aWSDL XML definition. The WSDL document as a Description component. exception: WsdlException - if a WSDL 2.0 validity problem is foundwith the given document. exception: MalformedURLException - if a given URI is invalid. exception: IOException - if an I/O problem occurs while readingthe document. |
readDescription | Description readDescription(String documentBaseURI, Element definitionsElement) throws WsdlException, MalformedURLException, IOException(Code) | | Read the specified <wsdl:definitions> element into a WSDL
definition.
Parameters: documentBaseURI - The document base URI of the WSDL definitiondescribed by the element. Will be set as the documentBaseURI of the returned Definition. Can be null, in which case it will be ignored. Parameters: definitionsElement - The <wsdl:definitions> element to read. The WSDL document as a Description component. exception: WsdlException - if a WSDL 2.0 validity problem is foundwith the given document. exception: MalformedURLException - if a given URI is invalid. exception: IOException - if an I/O problem occurs while readingthe document. |
readDescription | Description readDescription(String documentBaseURI, Document wsdlDocument) throws WsdlException, MalformedURLException, IOException(Code) | | Read the specified WSDL document into a WSDL definition.
Parameters: documentBaseURI - The document base URI of the WSDL definitiondescribed by the document. Will be set as thedocumentBaseURI of the returned Definition. Can be null, in which case it will be ignored. Parameters: wsdlDocument - The WSDL document, an XML document obeying the WSDL schema. The WSDL document as a Description component. exception: WsdlException - if a WSDL 2.0 validity problem is foundwith the given document. exception: MalformedURLException - if a given URI is invalid. exception: IOException - if an I/O problem occurs while readingthe document. |
readDescription | Description readDescription(String documentBaseURI, InputSource inputSource) throws WsdlException, MalformedURLException, IOException(Code) | | Read a WSDL document into a WSDL definition.
Parameters: documentBaseURI - The document base URI of the WSDL definitiondescribed by the document. Will be set as the documentBaseURI of the returned Definition. Can be null, in which case it will be ignored. Parameters: inputSource - An InputSource pointing to the WSDL document, an XML document obeying the WSDL schema. The WSDL document pointed to by the inputSource , as a Description component. exception: WsdlException - if a WSDL 2.0 validity problem is foundwith the given document. exception: MalformedURLException - if a given URI is invalid. exception: IOException - if an I/O problem occurs while readingthe document. |
|
|