Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best Javascript XML-RPC client library?

Tags:

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.

Found following libraries, but I have no idea what are their pros and cons:

http://www.zentus.com/js/xmlrpc.js.html

http://www.scottandrew.com/xml-rpc/

http://phpxmlrpc.sourceforge.net/jsxmlrpc/

http://www.vcdn.org/Public/XMLRPC/

http://mimic-xmlrpc.sourceforge.net/

like image 272
Frank Bannister Avatar asked Jul 17 '09 14:07

Frank Bannister


2 Answers

There is a Google-hosted library here: http://code.google.com/p/json-xml-rpc/. It supports both XML-RPC and JSON-RPC for JavaScript, and asynchronous as well as synchronous requests. I'm about to try out the XML-RPC for JavaScript myself with a JQuery UI and will update this based on my findings.

like image 120
Chris B. Avatar answered Oct 21 '22 01:10

Chris B.


There are two new libraries that I recently published for doing XML-RPC over JavaScript. One works with jQuery, one is plain JavaScript for modern browsers.

  • jQuery XML-RPC (docs)
  • xmlrpc.js
like image 27
Tim Heap Avatar answered Oct 20 '22 23:10

Tim Heap