Question

I am attempting to post to a page served by IIS6 and I am adding the following header:

Transfer-Encoding: chunked

When I do this, I get a 404 error: The system cannot find the file specified.. If I make the same request to the page without this header, it definitely exists.

Here are the headers - the only difference between the two requests is the chunking...

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/

And the body:

4
xxxx
0

The IIS metabase has AspEnableChunkedEncoding set to true at the W3SVC level and it is not overridden at the site level.

Why do I get a 404 error?

Update: I notice on the response for the unsuccessful request that the:

x-powered-by: asp.net

...header is absent. I don't know if that helps - it is there if I don't set the header in the request.

Was it helpful?

Solution

Is URLScan installed? It could be blocking the header

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top