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.