最好的 Javascript XML-RPC 客户端库是什么?

发布于 2024-07-28 23:55:10 字数 719 浏览 4 评论 0原文

您认为最好的 Javascript XML-RPC 客户端库是什么?为什么?

我正在制作一个 JQuery 应用程序,我需要用它与我的 xmlrpc 服务器进行通信。

找到以下库,但我不知道它们的优点和缺点是什么:

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/

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/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

左耳近心 2024-08-04 23:55:10

这里有一个 Google 托管的库:http://code.google.com/p /json-xml-rpc/
它支持 JavaScript 的 XML-RPC 和 JSON-RPC,以及异步和同步请求。 我即将使用 JQuery UI 亲自尝试 JavaScript 的 XML-RPC,并将根据我的发现进行更新。

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.

以可爱出名 2024-08-04 23:55:10

我最近发布了两个新库,用于通过 JavaScript 执行 XML-RPC。 一种使用 jQuery,一种是适用于现代浏览器的纯 JavaScript。

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.

软甜啾 2024-08-04 23:55:10

我已经尝试过 http://www.zentus.com/js/xmlrpc.js.html 我自己。 在 FireFox 和 Chrome 中解析结果时出现问题,在 IE 中解析结果工作正常。

我没有尝试过其他的,但“模仿”看起来很棒(如果它有效的话)。

对于我自己的问题,我已改用 JSON 而不是 XMLRPC。

I have tried http://www.zentus.com/js/xmlrpc.js.html myself. It has problems parsing the result in FireFox and Chrome, parsing the result in IE worked fine.

I have not tried the others, but 'mimic' looks great (if it works).

For my own problem, I've switched to JSON instead of XMLRPC.

百思不得你姐 2024-08-04 23:55:10

我对 jsolait (特别是它的“xmlrpc”模块)很幸运,尽管该项目现在似乎已经死了。

I've had good luck with jsolait (specifically its 'xmlrpc' module), although the project appears to be dead now.

守望孤独 2024-08-04 23:55:10

对于 JavaScript 中对远程服务器的 XML-RPC 客户端调用,我成功地使用了 RedStone XML-RPC 库:

我在另一端将其与 Python 连接,但我必须对库进行一些小的修正:

//  python xml-rpc does not has a handler name
var message = '<?xml version="1.0"?><methodCall><methodName>' + ((this.handlerName!="")?(this.handlerName + '.'):"") +  method + '</methodName>';

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 = '<?xml version="1.0"?><methodCall><methodName>' + ((this.handlerName!="")?(this.handlerName + '.'):"") +  method + '</methodName>';
情栀口红 2024-08-04 23:55:10

该协议相当简单,您确定需要一个库吗? 也许只发送协议所需的 XML?

The protocol is rather easy, are you sure you need a library at all? Maybe just send the XML the protocol requires?

我偏爱纯白色 2024-08-04 23:55:10

将库添加到列表中。 我发现这个非常容易使用,尽管我还没有尝试过提到的所有其他方法。

Adding a library to the list. I found this one quite easy to use, although I haven't tried all of the others that are mentioned.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文