文章分类 | 推荐文章 | 最新文章 | 热点文章 | 最新软件 | 精品软件 | 下载排行 | 推荐下载 | firefox | WPS | 杀毒软件 | Picasa
清风网络
首 页 软件下载 网络学院 数码学院
QQ 电脑入门 游戏 操作系统 图形处理 办公软件 媒体动画 精文荟萃 工具软件 网络编程 程序开发 网络技术 认证考试 网站建设 文章专栏
当前位置:清风网络学院网络技术网络协议RFC2616 - Hypertext Transfer Protocol -- HTTP/1.1
精品推荐
特别推荐
·ISIS路由协议
·Telnet入侵最完全手册
·网络协议基础知识 SMTP协议和UDP协议
·新的宽带认证方式——IEEE 802.1x协议
·ARP协议揭密
·网络沟通的桥梁-协议X档案
·TCP/IP协议简介
·NGN网络协议解析
·HTTP协议基础
·电子商务安全协议
·SSL协议介绍
·SIP、SAP及SDP协议组合应用的研究
·在Windows 2000 Server中配置TCP/IP协议
·Catalyst8500配置实例之HSRP协议培植
·计算机网络体系层次结构的划分
·OSPF计算路由
热点TOP10
·RFC1305 - Network Time Protocol (Version 3) Specification, Implementation
·RFC1015 - Implementation plan for interagency research Internet
·Ad Hoc网络协议栈通用要求研究
·RFC791 - Internet Protocol
·RFC4081 - Security Threats for Next Steps in Signaling (NSIS)
·完全用Linux工作 摈弃Windows
·在Windows 2000 Server中配置TCP/IP协议
·关于Sniffer Pro
·RFC4098 - Terminology for Benchmarking BGP Device Convergence in the Control Plane
·RFC2616 - Hypertext Transfer Protocol -- HTTP/1.1
·第三章 广域网协议配置命令(四)
·RFC3996-Internet Printing Protocol (IPP): The ippget Delivery Method for Event Notifications
·RFC2753 - A Framework for Policy-based Admission Control
·Telnet入侵最完全手册
·ARP(地址解析协议)的高速缓存、分组格式和代理以及arp命令
·RFC2765 - Stateless IP/ICMP Translation Algorithm (SIIT)
·IRIS Traffic Analyzer简易教程
·新的宽带认证方式——IEEE 802.1x协议
·RS-485串行数据通信协议及其应用
·ISIS路由协议

RFC2616 - Hypertext Transfer Protocol -- HTTP/1.1

日期:2007年5月5日 作者: 查看:[大字体 中字体 小字体]


not understand SHOULD return 501 (Unimplemented), and close the
connection. A server MUST NOT send transfer-codings to an HTTP/1.0
client.

3.6.1 Chunked Transfer Coding

The chunked encoding modifies the body of a message in order to
transfer it as a series of chunks, each with its own size indicator,
followed by an OPTIONAL trailer containing entity-header fields. This
allows dynamically produced content to be transferred along with the
information necessary for the recipient to verify that it has
received the full message.

Chunked-Body = *chunk
last-chunk
trailer
CRLF

chunk = chunk-size [ chunk-extension ] CRLF
chunk-data CRLF
chunk-size = 1*HEX
last-chunk = 1*("0") [ chunk-extension ] CRLF

chunk-extension= *( ";" chunk-ext-name [ "=" chunk-ext-val ] )
chunk-ext-name = token
chunk-ext-val = token quoted-string
chunk-data = chunk-size(OCTET)
trailer = *(entity-header CRLF)

The chunk-size field is a string of hex digits indicating the size of
the chunk. The chunked encoding is ended by any chunk whose size is
zero, followed by the trailer, which is terminated by an empty line.

The trailer allows the sender to include additional HTTP header
fields at the end of the message. The Trailer header field can be
used to indicate which header fields are included in a trailer (see
section 14.40).

A server using chunked transfer-coding in a response MUST NOT use the
trailer for any header fields unless at least one of the following is
true:

a)the request included a TE header field that indicates "trailers" is
acceptable in the transfer-coding of the response, as described in
section 14.39; or,

b)the server is the origin server for the response, the trailer
fields consist entirely of optional metadata, and the recipient
could use the message (in a manner acceptable to the origin server)
without receiving this metadata. In other words, the origin server
is willing to accept the possibility that the trailer fields might
be silently discarded along the path to the client.

This requirement prevents an interoperability failure when the
message is being received by an HTTP/1.1 (or later) proxy and
forwarded to an HTTP/1.0 recipient. It avoids a situation where
compliance with the protocol would have necessitated a possibly
infinite buffer on the proxy.

An example process for decoding a Chunked-Body is presented in
appendix 19.4.6.

All HTTP/1.1 applications MUST be able to receive and decode the
"chunked" transfer-coding, and MUST ignore chunk-extension extensions
they do not understand.

3.7 Media Types

HTTP uses Internet Media Types [17] in the Content-Type (section
14.17) and Accept (section 14.1) header fields in order to provide
open and extensible data typing and type negotiation.

media-type = type "/" subtype *( ";" parameter )

上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17] [18] [19] [20] [21] [22] [23] [24] [25] [26] [27] [28] [29] [30] [31] [32] [33] [34] [35] [36] [37] [38] [39] [40] [41] [42] [43] [44] [45] [46] [47] [48] [49] [50] [51] [52] [53] [54] [55] [56] [57] [58] [59] [60] [61] [62] [63] [64] [65] [66] [67] [68] [69] [70] [71] [72] [73] [74] [75] [76] [77] [78] [79] [80] [81] [82] [83] [84] [85] [86] [87] [88] [89] [90] [91] [92] [93] [94] [95] [96] [97] [98] [99] [100] [101] [102] [103] [104] [105] [106] [107] [108] [109] [110] [111] [112] [113] [114] [115] [116] [117] [118] [119] [120] [121] [122] [123] [124] [125] [126] [127] [128] [129] [130] [131] 下一页 




上一篇:RFC2617 - HTTP Authentication: Basic and Digest Access Authentication

下一篇:RFC2615 - PPP over SONET/SDH

RFC2616 - Hypertext Transfer Protocol -- HTTP/1.1 相关文章:
·解决与HTTP 500 – 内部服务器错误错误信息有关的问题
·Windows Vista Ultimate中文旗舰版下载+简单破解(支持迅雷HTTP & BT)
·RFC1305 - Network Time Protocol (Version 3) Specification, Implementation
·HTTP500内部服务器错误修正办法
·RFC791 - Internet Protocol
·何谓HTTP 500内部服务器错误
·IE7浏览器访问HTTPS网页故障攻略
·apache配置文件httpd.conf
·Apache2的httpd.conf翻译
·RFC2616 - Hypertext Transfer Protocol -- HTTP/1.1
RFC2616 - Hypertext Transfer Protocol -- HTTP/1.1 相关软件:
·圣斗士冥王篇第五话HTTP高速下载
·获取任意网站数据利器GetHttpData v1.0
·CC File Transfer V2.8
·目前最好的电影程序网狐(http://szfox.com)美化版
·HTTP转SOCKS V1.2
·Port80 Software httpZipv3.6
·宽带HTTP代理服务器[AdslHttpProxy] V1.2
·http://www.skycn.com/soft/4436.html
·Cisco Press CCNP BSCI Configuring IS-IS Protocol
·日语惯用语 来源:http://kenka.ty168.net

特别声明:本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。
[打印本页] [关闭窗口] 转载请注明来源:http://www.vipcn.net
| 帮助(?) | 版权声明 | 友情连接 | 关于我们 | 信息发布
Copyright 2007 www.vipcn.net All Rights Reserved. 鄂ICP备05000083号Powered by:viphot