What is the best Javascript XML-RPC client library in your opinion and why?
I\'am making a JQuery app and I need to communicate with my xmlrpc server with it.
<
For XML-RPC client calls in JavaScript to a remote server, I successfully used the RedStone XML-RPC library:
I was interfacing it with Python on the other side, I had to do a minor correction to the library though:
// python xml-rpc does not has a handler name
var message = '' + ((this.handlerName!="")?(this.handlerName + '.'):"") + method + ' ';