我们何时何地使用 XMLRPC
我听说很多博客网站都在使用这个协议。 我想知道那是什么以及我们何时/何地使用此 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您想要向应用程序公开 XML-RPC 接口 (API) 时,可以使用 XML-RPC 服务器。
您使用 XML-RPC 客户端连接到 XML-RPC 服务器。
http://en.wikipedia.org/wiki/XML-RPC
使用 PHP 的示例请参阅 Zend_XmlRpc_Client 和 Zend_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.
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.