查询 http header 时出现错误 ERROR_WINHTTP_HEADER_NOT_FOUND
While querying http header I am getting an error ERROR_WINHTTP_HEADER_NOT_FOUND
在查询 http header 时(通过 winhttpqueryheaders)我收到一个错误 ERROR_WINHTTP_HEADER_NOT_FOUND 即请求的 header 不能 located.This 发生只有当我请求的数据很大时,对于小数据它工作正常。
WinHttpQueryHeaders( hRequest,
WINHTTP_QUERY_CONTENT_LENGTH | WINHTTP_QUERY_FLAG_NUMBER,
WINHTTP_HEADER_NAME_BY_INDEX,
&contentLength,
&contentLenBufferSize,
WINHTTP_NO_HEADER_INDEX);
显然 Content-Length
header 不存在,否则 WinHttpQueryHeaders()
不会报告 ERROR_WINHTTP_HEADER_NOT_FOUND
.
Content-Length
header在很多情况下是可选的:
如果消息body使用chunked传输编码(在HTTP 1.1中常用,尤其是大数据),则Content-Length
header 需要 省略,必须 如果存在则忽略。这是您的情况中最有可能的情况。
如果消息 body 使用 multipart/...
媒体类型(即 self-terminating),则 Content-Length
header 可能被省略。
如果消息通过关闭套接字终止,Content-Length
header 可以省略。
因此,并非总是能够在消息开头知道完整的内容长度,有时您只能在到达消息结尾时才能知道长度。根据 [=23=,您需要查看 Content-Type
、Content-Length
、Transfer-Encoding
和 Connection
header 以找出真正发生的事情]:
4.4 Message Length
The transfer-length of a message is the length of the message-body as
it appears in the message; that is, after any transfer-codings have
been applied. When a message-body is included with a message, the
transfer-length of that body is determined by one of the following
(in order of precedence):
1.Any response message which "MUST NOT" include a message-body (such
as the 1xx, 204, and 304 responses and any response to a HEAD
request) is always terminated by the first empty line after the
header fields, regardless of the entity-header fields present in
the message.
2.If a Transfer-Encoding header field (section 14.41) is present and
has any value other than "identity", then the transfer-length is
defined by use of the "chunked" transfer-coding (section 3.6),
unless the message is terminated by closing the connection.
3.If a Content-Length header field (section 14.13) is present, its
decimal value in OCTETs represents both the entity-length and the
transfer-length. The Content-Length header field MUST NOT be sent
if these two lengths are different (i.e., if a Transfer-Encoding
header field is present). If a message is received with both a
Transfer-Encoding header field and a Content-Length header field,
the latter MUST be ignored.
4.If the message uses the media type "multipart/byteranges", and the
ransfer-length is not otherwise specified, then this self-
elimiting media type defines the transfer-length. This media type
UST NOT be used unless the sender knows that the recipient can arse
it; the presence in a request of a Range header with ultiple byte-
range specifiers from a 1.1 client implies that the lient can parse
multipart/byteranges responses.
A range header might be forwarded by a 1.0 proxy that does not
understand multipart/byteranges; in this case the server MUST
delimit the message using methods defined in items 1,3 or 5 of
this section.
5.By the server closing the connection. (Closing the connection
cannot be used to indicate the end of a request body, since that
would leave no possibility for the server to send back a response.)
For compatibility with HTTP/1.0 applications, HTTP/1.1 requests
containing a message-body MUST include a valid Content-Length header
field unless the server is known to be HTTP/1.1 compliant. If a
request contains a message-body and a Content-Length is not given,
the server SHOULD respond with 400 (bad request) if it cannot
determine the length of the message, or with 411 (length required) if
it wishes to insist on receiving a valid Content-Length.
All HTTP/1.1 applications that receive entities MUST accept the
"chunked" transfer-coding (section 3.6), thus allowing this mechanism
to be used for messages when the message length cannot be determined
in advance.
Messages MUST NOT include both a Content-Length header field and a
non-identity transfer-coding. If the message does include a non-
identity transfer-coding, the Content-Length MUST be ignored.
When a Content-Length is given in a message where a message-body is
allowed, its field value MUST exactly match the number of OCTETs in
the message-body. HTTP/1.1 user agents MUST notify the user when an
invalid length is received and detected.
在查询 http header 时(通过 winhttpqueryheaders)我收到一个错误 ERROR_WINHTTP_HEADER_NOT_FOUND 即请求的 header 不能 located.This 发生只有当我请求的数据很大时,对于小数据它工作正常。
WinHttpQueryHeaders( hRequest,
WINHTTP_QUERY_CONTENT_LENGTH | WINHTTP_QUERY_FLAG_NUMBER,
WINHTTP_HEADER_NAME_BY_INDEX,
&contentLength,
&contentLenBufferSize,
WINHTTP_NO_HEADER_INDEX);
显然 Content-Length
header 不存在,否则 WinHttpQueryHeaders()
不会报告 ERROR_WINHTTP_HEADER_NOT_FOUND
.
Content-Length
header在很多情况下是可选的:
如果消息body使用chunked传输编码(在HTTP 1.1中常用,尤其是大数据),则
Content-Length
header 需要 省略,必须 如果存在则忽略。这是您的情况中最有可能的情况。如果消息 body 使用
multipart/...
媒体类型(即 self-terminating),则Content-Length
header 可能被省略。如果消息通过关闭套接字终止,
Content-Length
header 可以省略。
因此,并非总是能够在消息开头知道完整的内容长度,有时您只能在到达消息结尾时才能知道长度。根据 [=23=,您需要查看 Content-Type
、Content-Length
、Transfer-Encoding
和 Connection
header 以找出真正发生的事情]:
4.4 Message Length The transfer-length of a message is the length of the message-body as it appears in the message; that is, after any transfer-codings have been applied. When a message-body is included with a message, the transfer-length of that body is determined by one of the following (in order of precedence): 1.Any response message which "MUST NOT" include a message-body (such as the 1xx, 204, and 304 responses and any response to a HEAD request) is always terminated by the first empty line after the header fields, regardless of the entity-header fields present in the message. 2.If a Transfer-Encoding header field (section 14.41) is present and has any value other than "identity", then the transfer-length is defined by use of the "chunked" transfer-coding (section 3.6), unless the message is terminated by closing the connection. 3.If a Content-Length header field (section 14.13) is present, its decimal value in OCTETs represents both the entity-length and the transfer-length. The Content-Length header field MUST NOT be sent if these two lengths are different (i.e., if a Transfer-Encoding header field is present). If a message is received with both a Transfer-Encoding header field and a Content-Length header field, the latter MUST be ignored. 4.If the message uses the media type "multipart/byteranges", and the ransfer-length is not otherwise specified, then this self- elimiting media type defines the transfer-length. This media type UST NOT be used unless the sender knows that the recipient can arse it; the presence in a request of a Range header with ultiple byte- range specifiers from a 1.1 client implies that the lient can parse multipart/byteranges responses. A range header might be forwarded by a 1.0 proxy that does not understand multipart/byteranges; in this case the server MUST delimit the message using methods defined in items 1,3 or 5 of this section. 5.By the server closing the connection. (Closing the connection cannot be used to indicate the end of a request body, since that would leave no possibility for the server to send back a response.) For compatibility with HTTP/1.0 applications, HTTP/1.1 requests containing a message-body MUST include a valid Content-Length header field unless the server is known to be HTTP/1.1 compliant. If a request contains a message-body and a Content-Length is not given, the server SHOULD respond with 400 (bad request) if it cannot determine the length of the message, or with 411 (length required) if it wishes to insist on receiving a valid Content-Length. All HTTP/1.1 applications that receive entities MUST accept the "chunked" transfer-coding (section 3.6), thus allowing this mechanism to be used for messages when the message length cannot be determined in advance. Messages MUST NOT include both a Content-Length header field and a non-identity transfer-coding. If the message does include a non- identity transfer-coding, the Content-Length MUST be ignored. When a Content-Length is given in a message where a message-body is allowed, its field value MUST exactly match the number of OCTETs in the message-body. HTTP/1.1 user agents MUST notify the user when an invalid length is received and detected.