public interface WsdlReader
| Modifier and Type | Method and Description |
|---|---|
Description |
readDescription(String wsdlURI)
Read the WSDL document accessible via the specified
URI into a WSDL definition.
|
Description |
readDescription(String documentBaseURI,
Document wsdlDocument)
Read the specified WSDL document into a WSDL definition.
|
Description |
readDescription(String documentBaseURI,
Element definitionsElement)
Read the specified <wsdl:definitions> element into a WSDL
definition.
|
Description |
readDescription(String documentBaseURI,
InputSource inputSource)
Read a WSDL document into a WSDL definition.
|
Description |
readDescription(String contextURI,
String wsdlURI)
Read the WSDL document accessible via the specified
URI into a WSDL definition.
|
Definitions |
readWsdl(String wsdlURI)
Deprecated.
- replaced by readDescription
|
Definitions |
readWsdl(String documentBaseURI,
Document wsdlDocument)
Deprecated.
use readDescription
|
Definitions |
readWsdl(String documentBaseURI,
Element definitionsElement)
Deprecated.
use readDescription
|
Definitions |
readWsdl(String documentBaseURI,
InputSource inputSource)
Deprecated.
use readDescription
|
Definitions |
readWsdl(String contextURI,
String wsdlURI)
Deprecated.
use readDescription
|
Description readDescription(String wsdlURI) throws WsdlException, MalformedURLException, IOException
wsdlURI - The URI (can be a filename or URL) pointing to a
WSDL XML definition.WsdlException - if a WSDL 2.0 validity problem is found
with the given document.MalformedURLException - if the given URL is invalid.IOException - if an I/O problem occurs while reading
the document.Definitions readWsdl(String wsdlURI) throws WsdlException, MalformedURLException, IOException
Description readDescription(String contextURI, String wsdlURI) throws WsdlException, MalformedURLException, IOException
contextURI - The context in which to resolve the wsdlURI, if the
wsdlURI is relative. Can be null, in which case it
will be ignored.wsdlURI - The URI (can be a filename or URL) pointing to a
WSDL XML definition.WsdlException - if a WSDL 2.0 validity problem is found
with the given document.MalformedURLException - if a given URI is invalid.IOException - if an I/O problem occurs while reading
the document.Definitions readWsdl(String contextURI, String wsdlURI) throws WsdlException, MalformedURLException, IOException
Description readDescription(String documentBaseURI, Element definitionsElement) throws WsdlException, MalformedURLException, IOException
documentBaseURI - The document base URI of the WSDL definition
described by the element. Will be set as the
documentBaseURI of the returned Definition.
Can be null, in which case it will be ignored.definitionsElement - The <wsdl:definitions> element to read.WsdlException - if a WSDL 2.0 validity problem is found
with the given document.MalformedURLException - if a given URI is invalid.IOException - if an I/O problem occurs while reading
the document.Definitions readWsdl(String documentBaseURI, Element definitionsElement) throws WsdlException, MalformedURLException, IOException
Description readDescription(String documentBaseURI, Document wsdlDocument) throws WsdlException, MalformedURLException, IOException
documentBaseURI - The document base URI of the WSDL definition
described by the document. Will be set as the
documentBaseURI of the returned Definition.
Can be null, in which case it will be ignored.wsdlDocument - The WSDL document, an XML document obeying the WSDL
schema.WsdlException - if a WSDL 2.0 validity problem is found
with the given document.MalformedURLException - if a given URI is invalid.IOException - if an I/O problem occurs while reading
the document.Definitions readWsdl(String documentBaseURI, Document wsdlDocument) throws WsdlException, MalformedURLException, IOException
Description readDescription(String documentBaseURI, InputSource inputSource) throws WsdlException, MalformedURLException, IOException
documentBaseURI - The document base URI of the WSDL definition
described by the document. Will be set as the
documentBaseURI of the returned Definition.
Can be null, in which case it will be ignored.inputSource - An InputSource pointing to the WSDL document, an
XML document obeying the WSDL schema.inputSource,
as a Description component.WsdlException - if a WSDL 2.0 validity problem is found
with the given document.MalformedURLException - if a given URI is invalid.IOException - if an I/O problem occurs while reading
the document.Definitions readWsdl(String documentBaseURI, InputSource inputSource) throws WsdlException, MalformedURLException, IOException
Copyright © 2011-2016 OpenESB Community. All Rights Reserved.