├── .gitignore ├── .vscode └── launch.json ├── README.md ├── _config.yml ├── app.js ├── client.js ├── package.json └── service.wsdl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officer-rosmarino/node-soap-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officer-rosmarino/node-soap-example/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officer-rosmarino/node-soap-example/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officer-rosmarino/node-soap-example/HEAD/_config.yml -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officer-rosmarino/node-soap-example/HEAD/app.js -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officer-rosmarino/node-soap-example/HEAD/client.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officer-rosmarino/node-soap-example/HEAD/package.json -------------------------------------------------------------------------------- /service.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officer-rosmarino/node-soap-example/HEAD/service.wsdl --------------------------------------------------------------------------------