Learn XML-RPC
XML-RPC Resources
Selected Reading
- XML-RPC - Summary
- XML-RPC - Examples
- XML-RPC - Fault
- XML-RPC - Response
- XML-RPC - Request
- XML-RPC - Data Model
- XML-RPC - Introduction
- XML-RPC - Home
XML-RPC Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
XML-RPC - Response
XML-RPC - Response Format
答复与要求大相径庭。 如果答复是成功的——程序是正确的,执行正确,并返还结果——那么,除了methodCall要素被methodResponse要素所取代外,XML-RPC的回复将像一项请求那样看待。 内容:
<?xml version="1.0"?> <methodResponse> <params> <param> <value><double>18.24668429131</double></value> </param> </params> </methodResponse>
XML-RPC的反应只能包含一个参数。
这一参数可能是一个阵容或构体,因此有可能回归多重价值。
总是要求回报反应价值。 “产品价值”——或许是真正的(1)。
Like requests, responses are packaged in HTTP and have HTTP headers. All XML-RPC responses use the 200 OK response code, even if a fault is contained in the message. Headers use a common structure similar to that of requests, and a typical set of headers might look pke:
HTTP/1.1 200 OK Date: Sat, 06 Oct 2001 23:20:04 GMT Server: Apache.1.3.12 (Unix) Connection: close Content-Type: text/xml Content-Length: 124
XML-RPC只需要1 000多吉拉特,但吉大港山区1. 兼容。
内容提要必须放在案文/xml上。
内容-内容标题具体规定了答复的长度。
完整的反应,包括头盔和应对有效载荷。
HTTP/1.1 200 OK Date: Sat, 06 Oct 2001 23:20:04 GMT Server: Apache.1.3.12 (Unix) Connection: close Content-Type: text/xml Content-Length: 124 <?xml version="1.0"?> <methodResponse> <params> <param> <value><double>18.24668429131</double></value> </param> </params> </methodResponse>
在XML-RPC服务器向XML-RPC客户提供答复后,该链接关闭。 后续行动请求必须作为单独的XML-RPC链接发出。
Advertisements