What is the best Javascript XML-RPC client library?

后端 未结 7 1604
臣服心动
臣服心动 2020-12-13 07:14

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.

<
7条回答
  •  旧时难觅i
    2020-12-13 07:25

    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 + '';
    

提交回复
热议问题