org.ws4d.java.wsdl
Interface WSDLParser
- All Known Implementing Classes:
- DefaultWSDLParser
public interface WSDLParser
Method Summary |
WSDL |
parse(java.io.InputStream in,
URI fromUri,
java.lang.String targetNamespace,
boolean loadReferencedFiles)
|
WSDL |
parse(org.xmlpull.v1.XmlPullParser parser,
URI fromUri,
java.lang.String targetNamespace,
boolean loadReferencedFiles)
|
parse
WSDL parse(java.io.InputStream in,
URI fromUri,
java.lang.String targetNamespace,
boolean loadReferencedFiles)
throws org.xmlpull.v1.XmlPullParserException,
java.io.IOException
- Parameters:
in
- fromUri
- the URI pointing to the WSDL document being parsedtargetNamespace
- if null
, then this is the top-level
WSDL file (i.e. not an import)loadReferencedFiles
- if true
, other WSDL and XML
Schema files referenced by the parsed WSDL will be parsed
recursively, too
- Returns:
-
- Throws:
org.xmlpull.v1.XmlPullParserException
java.io.IOException
parse
WSDL parse(org.xmlpull.v1.XmlPullParser parser,
URI fromUri,
java.lang.String targetNamespace,
boolean loadReferencedFiles)
throws org.xmlpull.v1.XmlPullParserException,
java.io.IOException
- Parameters:
parser
- fromUri
- the URI pointing to the WSDL document being parsedtargetNamespace
- if null
, then this is the top-level
WSDL file (i.e. not an import)loadReferencedFiles
- if true
, other WSDL and XML
Schema files referenced by the parsed WSDL will be parsed
recursively, too
- Returns:
-
- Throws:
org.xmlpull.v1.XmlPullParserException
java.io.IOException