Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anilanar/co-soap
co friendly soap client
https://github.com/anilanar/co-soap
Last synced: 7 days ago
JSON representation
co friendly soap client
- Host: GitHub
- URL: https://github.com/anilanar/co-soap
- Owner: anilanar
- License: mit
- Created: 2014-08-15T22:17:40.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-08-16T20:06:26.000Z (about 10 years ago)
- Last Synced: 2024-11-01T03:17:58.538Z (15 days ago)
- Language: JavaScript
- Size: 145 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/anilanar/co-soap.svg?branch=master)](https://travis-ci.org/anilanar/co-soap) [![Coverage Status](http://img.shields.io/coveralls/anilanar/co-soap.svg)](https://coveralls.io/r/anilanar/co-soap?branch=master)
[![NPM version](https://badge.fury.io/js/co-soap.svg)](http://badge.fury.io/js/co-soap)#co-soap
[co](https://github.com/visionmedia/co) friendly wrapper around [Soap](https://github.com/vpulim/node-soap) client.
## Disclaimer
[Soap](https://github.com/vpulim/node-soap) is far from being bug free and it is not well maintained. If you encounter bugs/problems, you are welcome to report them here. However it is highly recommended that you check [Soap issues]((https://github.com/vpulim/node-soap/issues) beforehand if there are issues similar to yours. **co-soap** will not be endeavouring to fix bugs related to [Soap](https://github.com/vpulim/node-soap).
## Installation
```js
$ npm install co-soap
```## Example
```js
var cosoap = require('co-soap'),
co = require('co');co(function* (){
var client = yield cosoap.createClient('http://www.dneonline.com/calculator.asmx?WSDL');
var response = yield client.Add({intA: 5, intB: 10});// prints 15
console.log(response.AddResult);
})();
```## API
Please see [Soap Github page](https://github.com/vpulim/node-soap) for API details.## License
MIT