admin/environment/php extension/xmlrpc

来自MoodleDocs
跳转至:导航、​搜索

下面只是转载的国外某网站文件,虽然是英文的不过比较简单的,应该是目前为止介绍的最为全面的文章了。还没有来得及向moodle做靠拢。

1、Using XML-RPC with PHP

  What is XML-RPC?

XML-RPC was developed by UserLand Software (http://www.userland.com) in April of 1998 as a technology to enable applications to talk to each other, no matter what language they are written in or where they are running. Since then, many implementations have been made beyond the original one for UserLand's Frontier product, and many major companies have adopted the technology for their products, including Microsoft's .NET and Apple's Mac OS X.

XML-RPC is a great enabler for distributed systems and system interoperability, as it allows any XML-RPC enabled applications to call the methods of other XML-RPC enabled applications, regardless of what language either application is written in, or on what machine either application is running on. This allows a perl function to make a call to a Python method, or a Java Servlet to call a PHP function, for example.

The upshot of XML-RPC is that a world of completely heterogeneous applications can talk to each other with very little work from their programmers.

What is covered in this article This article will cover installing PHP with XML-RPC support, examples of XML-RPC requests and responses, the basic functions used for XML-RPC requests, creating an XML-RPC server, creating an XML-RPC client, and suggests some resources for more information on XML-RPC.