node-xmlrpc icon indicating copy to clipboard operation
node-xmlrpc copied to clipboard

A pure JavaScript XML-RPC client and server for Node.js.

Results 48 node-xmlrpc issues
Sort by recently updated
recently updated
newest added

There's an error in regex used to parse iso8601: https://github.com/baalexander/node-xmlrpc/blob/d9c88c4185e16637ed5a22c1b91c80e958e8d69e/lib/date_formatter.js#L32 `\.` is treated by JavaScript as `.`, resulting in "any character" match, rather than "dot". A simple fix would be...

Scanned through documentation and didn't find any proxy option. It seems that the maintainers have not implemented a proxy tunneling option yet. There are many cases which the end user...

I went into `lib/client.js` to see that I can pass basic authentication parameters when creating a client (starting on line 56 at https://github.com/baalexander/node-xmlrpc/blob/master/lib/client.js). I think it would be useful for...

Hi, is there a way to set a timeout for a request in the client? Because, if the remote server does not answer I would like to be notified. :)...

``` this.httpServer = isSecure ? https.createServer(options, handleMethodCall) : http.createServer(handleMethodCall) process.nextTick(function() { this.httpServer.listen(options.port, options.host, onListening) }.bind(this)) this.close = function(callback) { this.httpServer.once('close', callback) this.httpServer.close() }.bind(this) } ``` This is how the server...

It’s ugly, but not against the specification. In an indirect, kind of heavily interpreted way, it’s explicitly allowed, see: http://xmlrpc.scripting.com/spec.html >The format of the URI in the first line of...

Seems it is possible to add a query string to path name in client module (line 37 in code base). Because some APIs want it. For example, Infusionsoft. It using...

We are getting below response some times when we call the magento instance. { [Error: read ECONNRESET] code: \'ECONNRESET\', errno: \'ECONNRESET\', syscall: \'read\' }' Not sure whether the issue with...

see http://habrahabr.ru/post/264851/ The problem is: available socket limit is reached. This workaround solves the problem in some scale.