最好的 Javascript XML-RPC 客户端库是什么?
您认为最好的 Javascript XML-RPC 客户端库是什么?为什么?
我正在制作一个 JQuery 应用程序,我需要用它与我的 xmlrpc 服务器进行通信。
找到以下库,但我不知道它们的优点和缺点是什么:
http://www .zentus.com/js/xmlrpc.js.html
http://www.scottandrew。 com/xml-rpc/
http://phpxmlrpc.sourceforge.net/jsxmlrpc/
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/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
这里有一个 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.
我最近发布了两个新库,用于通过 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.
我已经尝试过 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.
我对 jsolait (特别是它的“xmlrpc”模块)很幸运,尽管该项目现在似乎已经死了。
I've had good luck with jsolait (specifically its 'xmlrpc' module), although the project appears to be dead now.
对于 JavaScript 中对远程服务器的 XML-RPC 客户端调用,我成功地使用了 RedStone XML-RPC 库:
我在另一端将其与 Python 连接,但我必须对库进行一些小的修正:
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:
该协议相当简单,您确定需要一个库吗? 也许只发送协议所需的 XML?
The protocol is rather easy, are you sure you need a library at all? Maybe just send the XML the protocol requires?
将库添加到列表中。 我发现这个非常容易使用,尽管我还没有尝试过提到的所有其他方法。
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.