0.5.5 • Published 6 years ago
wsdlrdr v0.5.5
wsdlrdr
a simple wsdl parser, with promises
Support
how to get
install from npm
npm i wsdlrdr
available methods
getNamespaces
returns a collection with all available namespaces
action | description | type |
---|---|---|
response | all available namespaces | array |
getMethodParamsByName
returns all response/request parameter for a given function name
action | description | type |
---|---|---|
params | methodName | string |
response | methodParams | object |
getAllFunctions
get all in wsdl available functions as a array
action | description | type |
---|---|---|
response | all available function names | array |
getXmlDataAsJson
returns data from the given XML as JSON
action | description | type |
---|---|---|
params | xml | string |
response | converted xml | json |
how to use
const Wsdlrdr = require('wsdlrdr');
const params = {
host: 'hostname.com',
wsdl: '/path/to/wsdl'
};
const options = {
secure: true // https on
failOnWrongContentType: true // if no xml/wsdl
};
// get all functions listet in wsdl
Wsdlrdr.getAllFunctions(params, options)
.then((funcArray) => { console.log(funcArray); })
.catch((err) => { throw new Error(err) });
0.5.5
6 years ago
0.5.4
6 years ago
0.5.3
6 years ago
0.5.2
6 years ago
0.5.1
6 years ago
0.5.0
6 years ago
0.4.0
7 years ago
0.3.9
9 years ago
0.3.8
9 years ago
0.3.7
10 years ago
0.3.6
10 years ago
0.3.5
10 years ago
0.3.4
10 years ago
0.3.3
10 years ago
0.3.2
10 years ago
0.3.1
10 years ago
0.3.0
10 years ago
0.2.0
10 years ago
0.1.3
10 years ago
0.1.2
10 years ago
0.1.1
10 years ago
0.1.0
10 years ago