node-xmlrpc
node-xmlrpc copied to clipboard
A pure JavaScript XML-RPC client and server for Node.js.
I had forgotten that I had contributed to this project [many years ago](https://github.com/baalexander/node-xmlrpc/pulls?q=is%3Apr+author%3Ablaenk+is%3Aclosed) :smile: I really need to be able to perform requests via SCGI instead of HTTP. I was...
Useful for: - dynamic methods - proxies - etc.
In Deserializer, https://github.com/baalexander/node-xmlrpc/blob/master/lib/deserializer.js#L276 Instead of ``` js var buffer = new Buffer(data, 'base64') ``` I need ``` js var buffer = String(new Buffer(data, 'base64')) ``` Can you export the Deserializer...
Unfortunately, because some tests were already failing, I cannot be sure that nothing was broken.
I don't understand why but the tests do not pass on my computer: ``` > npm test > [email protected] test node-xmlrpc > vows 'test/*.js' ······ ✗ Errored » callback not...
These two changes allow interacting with XML-RPC servers that do things a bit differently. The first change supports decoding response boolean values as true/false strings where as before it would...
Hi, this pull request extends the client with an ability of making calls using [ES6 Proxy API](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy). It extends `Client` class with `$` property which is an instance of the...
I have a Node.js server (which uses express.js) and I need my server to be able to receive method calls and respond with method responses on a route /callback (myserver.tld/callback)....
Hi! I'm working on some use cases when the availability of a method call is known only once the call has been triggered, so I've introduced the possibility to handle...