I'm trying to debug a ranged request issue in my app, so I've been using curl to see the headers. If I do curl -v -H "Range: bytes=200-100" THEURL the server responds with:
< HTTP/1.1 206 Partial Content
< Date: Sat, 19 Jan 2013 17:46:52 GMT
< Server: Apache
< Content-Range: bytes 200-100/1096985137
< Etag: --REDACTED BY OP--
< Transfer-Encoding: chunked
< Content-Type: application/x-zip-compressed
Wouldn't returning 206 imply that the content range is valid and that range is going to be served?
Another thing I've noticed is that even if I use a valid, but small, content range like Range: bytes=0-100, the server responds with 206 but sends way more data than 100 bytes.
Am I doing something wrong?
Edit: It seems no matter what range I send this server, I always get back the full download. Strange.
200instead of206, so invalid range probably is treated as negative number and thus as "no limit" but maybe the response itself differs between versions or content-types. – Anthony Jan 19 at 18:18.sigfile using the ranges:Range: bytes=0-1orRange: bytes=1-0I am always returned a 206 and the full size of the file. – Stephen Melvin Jan 19 at 18:30