XML你所要知道的那些规范-RFC

2024-04-09 00:48
文章标签 xml 知道 规范 rfc 所要

本文主要是介绍XML你所要知道的那些规范-RFC,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

XML-RPC规范中文版

本规范说明的XML-RPC协议实现UserLand Frontier 5.1。

关于非技术性说明,请访问XML-RPC for Newbies。

文档提供了实现XML-RPC所需要的所有信息。

前言

XML-RPC是一种基于Internet的远程函数调用协议。

XML-RPC消息都是HTTP-POST请求。请求的主要部分的XML。服务器端执行后的返回结果同样也是XML格式。

函数调用的参数可以是scalars, numbers, strings, dates等等;也可以是混合型的记录和结构体。

Request请求样式

下面是一个XML-RPC请求的例子:

1.  POST /RPC2 HTTP/1.0  

2.  User-Agent: Frontier/5.1.2 (WinNT)  

3.  Host: betty.userland.com  

4.  Content-Type: text/xml  

5.  Content-length: 181  

6.    

7.    

8.  <?xml version="1.0"?>  

9.  <methodCall>  

10.    <methodName>examples.getStateName</methodName>  

11.    <params>  

12.       <param>  

13.          <value><i4>41</i4></value>  

14.          </param>  

15.       </params>  

16.    </methodCall>  

 

关于请求头

第一行的URI格式不是特定的。可以为空,如果服务器只处理XML-RPC请求甚至可以只是简单的一个斜线。可是,如果服务器除了XML-RPC外还提供其他的HTTP请求,URI可以帮助我们把请求指向特定的XML-RPC服务。

User-Agent和Host项是必须的。

Content-Type的值必须是text/xml.

Content-Length必须指定,而且必须是正确的值。

有效的格式

XML-RPC具有和XML一样的有效格式,并且是一个<methodCall>结构。

<methodCall>必须包含一个值为字符型的<methodName>子元素,用来表明被调用的方法。这个字符必须符合以下规定:大小写字母、数字0-9、下划线、点、冒号和斜线。至于怎么解释这个字符串将有服务器端来决定。

例如,methodName可以是一个包含执行request请求的文件的名字,可以是数据表中列的名字,还可以是表示目录和文件结构的路径。

如果远程调用接受参数,<methodCall>就必须包含<params>子元素。<params>可以包含任意个<param>元素,每个<param>包含一个<value>子元素。

Scalar <value>s <value>

<value>值被嵌入类型标签中,支持的类型如下表: 

Tag

Type

Example

<i4> or <int>

four-byte signed integer

-12

<boolean>

0 (false) or 1 (true)

1

<string>

string

hello world

<double>

double-precision signed floating point number

-12.214

<dateTime.iso8601>

date/time

19980717T14:08:55

<base64>

base64-encoded binary

eW91IGNhbid0IHJlYWQgdGhpcyE=

如果没有指定类型,默认为字符串。

<struct>s

参数值可以是<struct>。

每个<struct>包含若干<member>,每个<member>包含一个<name>和一个<value>.

如果所示为包含两个值的<struct>


1.  <struct>  

2.     <member>  

3.        <name>lowerBound</name>  

4.        <value><i4>18</i4></value>  

5.        </member>  

6.     <member>  

7.        <name>upperBound</name>  

8.        <value><i4>139</i4></value>  

9.        </member>  

10.    </struct>  

 

<struct>是可以递归使用的,任何<value>都里还可以<struct>或其他任何类型,包括后面将要说明的<array>。

<array>s

值可以个<array>

一个<array>简单的有一个<data>元素。<data>可以是任何合法类型。

下面是一个有4个值的array:


1.  <array>  

2.     <data>  

3.        <value><i4>12</i4></value>  

4.        <value><string>Egypt</string></value>  

5.        <value><boolean>0</boolean></value>  

6.        <value><i4>-31</i4></value>  

7.        </data>  

8.     </array>  

 

<array> elements do not havenames.

<array> 元素没有名字。

你可以混合使用上面列出的几种类型。

<arrays>可以递归使用,其值可以是<array>或其他类型,包括上面说明的<strut>。

Response应答样式

下面是一个 XML-RPC请求:


1.  HTTP/1.1 200 OK  

2.  Connection: close  

3.  Content-Length: 158  

4.  Content-Type: text/xml  

5.  Date: Fri, 17 Jul 1998 19:55:08 GMT  

6.  Server: UserLand Frontier/5.1.2-WinNT  

7.    

8.  <?xml version="1.0"?>  

9.  <methodResponse>  

10.    <params>  

11.       <param>  

12.          <value><string>South Dakota</string></value>  

13.          </param>  

14.       </params>  

15.    </methodResponse>  

 

Respnse应答格式

除非底层操作出现错,否则总是返回200 OK.

Content-Type是text/xml。必须设置Content-Length,并且必须是正确的值。

应到内容是一个简单的XML,可是是<methodResponse>包含一个<params>,<params>包含一个<param>,<param>包含一个<value>。

<methodResponse>可能含有一个< fault>标签。<fault>的值为<struct>类型,<struct>有两个元素,值为< int>的<faultCode>和值为<string>的<faultString>。

<methodResponse>不能既有<fault>又有<params>。

Fault example


1.  HTTP/1.1 200 OK  

2.  Connection: close  

3.  Content-Length: 426  

4.  Content-Type: text/xml  

5.  Date: Fri, 17 Jul 1998 19:55:02 GMT  

6.  Server: UserLand Frontier/5.1.2-WinNT  

7.    

8.  <?xml version="1.0"?>  

9.  <methodResponse>  

10.    <fault>  

11.       <value>  

12.          <struct>  

13.             <member>  

14.                <name>faultCode</name>  

15.                <value><int>4</int></value>  

16.                </member>  

17.             <member>  

18.                <name>faultString</name>  

19.                <value><string>Too many parameters.</string></value>  

20.                </member>  

21.             </struct>  

22.          </value>  

23.       </fault>  

24.    </methodResponse>  

 

Strategies/Goals

Firewalls. The goal of this protocol isto lay a compatible foundation across different environments, no new power isprovided beyond the capabilities of the CGI interface. Firewall software canwatch for POSTs whose Content-Type is text/xml.

Discoverability. We wanted a clean,extensible format that's very simple. It should be possible for an HTML coderto be able to look at a file containing an XML-RPC procedure call, understandwhat it's doing, and be able to modify it and have it work on the first or secondtry.

Easy to implement. We also wanted it tobe an easy to implement protocol that could quickly be adapted to run in otherenvironments or on other operating systems.

Updated 1/21/99 DW

The following questions came up on theUserLand discussion group as XML-RPC was beingimplemented in Python.

The Response Format section says"The body of the response is a single XML structure, a<methodResponse>, which can contain a single <params>..." Thisis confusing. Can we leave out the <params>?

No you cannot leave it out if theprocedure executed successfully. There are only two options, either a responsecontains a <params> structure or it contains a <fault> structure.That's why we used the word "can" in that sentence.

Is "boolean" a distinct datatype, or can boolean values be interchanged with integers (e.g. zero=false,non-zero=true)?

Yes, boolean is a distinct data type.Some languages/environments allow for an easy coercion from zero to false andone to true, but if you mean true, send a boolean type with the value true, soyour intent can't possibly be misunderstood.

What is the legal syntax (and range) forintegers? How to deal with leading zeros? Is a leading plus sign allowed? Howto deal with whitespace?

An integer is a 32-bit signed number.You can include a plus or minus at the beginning of a string of numericcharacters. Leading zeros are collapsed. Whitespace is not permitted. Justnumeric characters preceeded by a plus or minus.

What is the legal syntax (and range) forfloating point values (doubles)? How is the exponent represented? How to dealwith whitespace? Can infinity and "not a number" be represented?

There is no representation for infinityor negative infinity or "not a number". At this time, only decimalpoint notation is allowed, a plus or a minus, followed by any number of numericcharacters, followed by a period and any number of numeric characters.Whitespace is not allowed. The range of allowable values isimplementation-dependent, is not specified.

What characters are allowed in strings?Non-printable characters? Null characters? Can a "string" be used tohold an arbitrary chunk of binary data?

Any characters are allowed in a stringexcept < and &, which are encoded as &lt; and &amp;. A stringcan be used to encode binary data.

Does the "struct" element keepthe order of keys. Or in other words, is the struct "foo=1, bar=2"equivalent to "bar=2, foo=1" or not?

The struct element does not preserve theorder of the keys. The two structs are equivalent.

Can the <fault> struct containother members than <faultCode> and <faultString>? Is there a globallist of faultCodes? (so they can be mapped to distinct exceptions for languageslike Python and Java)?

A <fault> struct may not containmembers other than those specified. This is true for all other structures. Webelieve the specification is flexible enough so that all reasonabledata-transfer needs can be accomodated within the specified structures. If youbelieve strongly that this is not true, please post a message on the discussiongroup.

There is no global list of fault codes.It is up to the server implementer, or higher-level standards to specify faultcodes.

What timezone should be assumed for thedateTime.iso8601 type? UTC? localtime?

Don't assume a timezone. It should bespecified by the server in its documentation what assumptions it makes abouttimezones.

Additions

<base64> type. 1/21/99 DW.

Updated 6/30/03 DW

Removed "ASCII" fromdefinition of string.

Changed copyright dates, below, to1999-2003 from 1998-99.

Copyright and disclaimer

? Copyright 1998-2003 UserLand Software.All Rights Reserved.

This document and translations of it maybe copied and furnished to others, and derivative works that comment on orotherwise explain it or assist in its implementation may be prepared, copied,published and distributed, in whole or in part, without restriction of any kind,provided that the above copyright notice and these paragraphs are included onall such copies and derivative works.

This document may not be modified in anyway, such as by removing the copyright notice or references to UserLand orother organizations. Further, while these copyright restrictions apply to thewritten XML-RPC specification, no claim of ownership is made by UserLand to theprotocol it describes. Any party may, for commercial or non-commercialpurposes, implement this protocol without royalty or license fee to UserLand.The limited permissions granted herein are perpetual and will not be revoked byUserLand or its successors or assigns.

This document and the informationcontained herein is provided on an "AS IS" basis and USERLANDDISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANYWARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS ORANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.

这篇关于XML你所要知道的那些规范-RFC的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/886792

相关文章

MySQL高性能优化规范

前言:      笔者最近上班途中突然想丰富下自己的数据库优化技能。于是在查阅了多篇文章后,总结出了这篇! 数据库命令规范 所有数据库对象名称必须使用小写字母并用下划线分割 所有数据库对象名称禁止使用mysql保留关键字(如果表名中包含关键字查询时,需要将其用单引号括起来) 数据库对象的命名要能做到见名识意,并且最后不要超过32个字符 临时库表必须以tmp_为前缀并以日期为后缀,备份

intellij idea generatorConfig.xml

generatorConfig.xml <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE generatorConfigurationPUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN""http://mybatis.org/dtd/mybatis-ge

JavaEE7 Servlet 3.1(JSR 340)规范中文版

http://www.iteye.com/news/27727-jinnianshilongnian     Jave EE 7中的部分规范已正式获得批准通过,其中包括JSR340 Java Servlet 3.1规范,去年翻译了该规范,在此分享出来,希望对某些朋友有所帮助,不足之处请指正。   点击直接下载    在线版目录   Servlet3.1规范翻译

xml概论

以下内容摘录自W3School 一、XML的特性 xml是用来传输和存储数据的,本身对数据没有任何操作。在这里要区别一下html,html是用来显示数据的。xml的焦点是数据内容,html的焦点是数据外观。 下面是xml的定义: •XML 指可扩展标记语言(EXtensible Markup Language) •XML 是一种标记语言,很类似 HTML

XML的创建

这里使用的是org.dom4j的jar包来完成xml格式数据的创建。 import java.io.IOException;import java.io.StringWriter;import org.dom4j.Document;import org.dom4j.DocumentHelper;import org.dom4j.Element;import org.dom4j.

Spring下自定义xml标签

dubbo自定义了很多xml标签,例如<dubbo:application>,那么这些自定义标签是怎么与spring结合起来的呢?我们先看一个简单的例子。 一 编写模型类 1 package com.hulk.testdubbo.model;2 3 public class Hero {4 private String name;5 private int

xml reader

// TODO Auto-generated method stub

spring事务属性的xml格式配置

实际是使用代理做的事务优化 <!--配置事务的属性--><tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <!--匹配所有以add开头的方法--><tx:method name="add*" propagation="REQUIRED" /> <tx:metho

在struts.xml中,如何配置请求转发和请求重定向!

<span style="font-size:18px;"><span style="white-space:pre"> </span><!--<strong>下面用请求转发action </strong>,<strong>这样过去id不会丢</strong>,如果用重定向的话,id会丢 --><result name="updatePopedom"<span style="color:#ff00