我们何时何地使用 XMLRPC

发布于 2024-07-29 08:15:55 字数 85 浏览 2 评论 0原文

我听说很多博客网站都在使用这个协议。 我想知道那是什么以及我们何时/何地使用此 XMLRPC?

任何 PHP 的例子都是值得赞赏的。

I heard that many of the blog sites are using this protocol. I want to know what is that and when/where we use this XMLRPC?

Any example with PHP would be appreciable.

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

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

发布评论

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

评论(2

挽心 2024-08-05 08:15:55

当您想要向应用程序公开 XML-RPC 接口 (API) 时,可以使用 XML-RPC 服务器。

您使用 XML-RPC 客户端连接到 XML-RPC 服务器。

http://en.wikipedia.org/wiki/XML-RPC

使用 PHP 的示例请参阅 Zend_XmlRpc_ClientZend_XmlRpc_Server

如果您熟悉 MVC,请将其视为模型的另一个视图/控制器。 您可以通过 XML-RPC 将应用程序中的函数公开给外界。

You use an XML-RPC Server when you want to expose an XML-RPC interface (API) to your application.

You use an XML-RPC client to connect to an XML-RPC server.

http://en.wikipedia.org/wiki/XML-RPC

For examples with PHP see Zend_XmlRpc_Client and Zend_XmlRpc_Server.

If you're familiar with MVC, think of it as another View/Controller for your Model. You expose functions within your application to the outside world via XML-RPC.

为你鎻心 2024-08-05 08:15:55

XML-RPC 是 SOAP 的前身。 SOAP 是从 XML-RPC 发展而来的。 XML-RPC 很古老(1998),现在几乎没有使用。

XML-RPC is the predecessor of SOAP. SOAP evolved from XML-RPC. XML-RPC is ancient (1998), and almost unused today.

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