第 36 章 Zend_XmlRpc

目录

36.1. 介绍
36.2. Zend_XmlRpc_Client
36.2.1. 介绍
36.2.2. 带参数
36.2.3. 参数类型提示
36.2.4. 获取响应
36.3. Zend_XmlRpc_Server
36.3.1. Introduction
36.3.2. Basic Usage
36.3.3. Server Structure
36.3.4. Conventions
36.3.5. Utilizing Namespaces
36.3.6. Custom Request Objects
36.3.7. Custom Responses
36.3.8. Handling Exceptions via Faults
36.3.9. Caching Server Definitions Between Requests
36.3.10. Usage Examples

36.1. 介绍

XML-RPC是一个用HTTP作为传输层协议用XML作为编码的远程过程调用(注:RPC 即Remote Procedure Calling的缩写)。 虽然XML-RPC被设计得尽可能简单,但也允许复杂数据结构的传输、处理和返回。(XML-RPC 主页)。

Zend构架实现了XML-RPC 客户端(并且随后将实现XML-RPC服务端)使XML-RPC用起来尽可能的简单,并且使XML-RPC和PHP5 的SOAP web service extension用法尽可能的相似。