4

我正在尝试发布到 IIS6 提供的页面,并添加以下标题:

Transfer-Encoding: chunked

当我这样做时,我收到一个404错误:The system cannot find the file specified.. 如果我对没有此标头的页面发出相同的请求,它肯定存在。

这是标头-两个请求之间的唯一区别是分块...

POST http://hostname/appname/index.html HTTP/1.1
Host: hostname
Connection: keep-alive
Transfer-Encoding: chunked
Cache-Control: max-age=0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
Content-Type: application/x-www-form-urlencoded
Referer: http://referrer/

还有身体:

4
xxxx
0

IIS 元数据库在 W3SVC 级别将 AspEnableChunkedEncoding 设置为 true,并且不会在站点级别覆盖它。

为什么我会收到 404 错误?

更新:我注意到对不成功请求的响应:

x-powered-by: asp.net

...标题不存在。我不知道这是否有帮助 - 如果我没有在请求中设置标题,它就在那里。

4

1 回答 1

1

是否安装了 URLScan?它可能会阻止标题

于 2013-09-30T12:18:41.030 回答