Socket
Socket
Sign inDemoInstall

wsdlrdr

Package Overview
Dependencies
50
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    wsdlrdr

a simple wsdl parser, with promises


Version published
Maintainers
1
Install size
4.68 MB
Created

Readme

Source

wsdlrdr

a simple wsdl parser, with promises

Join the chat at https://gitter.im/moszeed/wsdlrdr

how to get

install from npm

npm i wsdlrdr

available methods

getNamespaces

returns a collection with all available namespaces

actiondescriptiontype
responseall available namespacesarray

getMethodParamsByName

returns all response/request parameter for a given function name

actiondescriptiontype
paramsmethodNamestring
responsemethodParamsobject

getAllFunctions

get all in wsdl available functions as a array

actiondescriptiontype
responseall available function namesarray

getXmlDataAsJson

returns data from the given XML as JSON

actiondescriptiontype
paramsxmlstring
responseconverted xmljson

how to use

var Wsdlrdr = require('wsdlrdr');

var params  = { host: 'hostname.com', wsdl: '/path/to/wsdl' };
var options = { secure: true }; // https on
	
    //get all functions listet in wsdl
	Wsdlrdr.getAllFunction(params, options)
       .then((funcArray) => { console.log(funcArray); })
       .catch((err) => { throw new Error(err) });

Keywords

FAQs

Last updated on 04 Mar 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc