What is the difference between HTTP headers Content-Range and Range? When should each be used?

I am trying to stream an audio file from a particular byte offset. Should I use Content-Range or Range header?

Thanks

link|improve this question

feedback

2 Answers

up vote 14 down vote accepted

Range is used in the request, to ask for a particular range (or ranges) of bytes. Content-Range is used in the response, to indicate which bytes the server is giving you (which may be different than the range you requested), as well as how long the entire content is (if known).

link|improve this answer
Read btimby answer below. – Bruno Martinez Dec 16 '11 at 18:12
1  
@BrunoMartinez While you can use Content-Range in the request, it was pretty clear from the question that the OP was asking about downloading content with a particular range. I was answering based on what the OP was asking, not trying to give a comprehensive description of every case in which Content-Range could be used. – Brian Campbell Dec 16 '11 at 19:45
@BrianCampbell you are of course correct. I just wanted to record my findings for posterity's sake. I edited my answer to make sure it does not give the impression that your answer is in any way wrong. – btimby Mar 29 at 16:39
@btimby Not a problem! Thank you for giving a more complete explanation; it is always useful if you find the page from a Google search. – Brian Campbell Mar 29 at 16:53
feedback

Actually, the accepted answer is not complete. Content-Range is not only used in responses. It is also legal in requests that provide an entity body.

For example, an HTTP PUT provides an entity body, it might provide only a portion of an entity. Thus the PUT request can include a Content-Range header indicating to the server where the partial entity body should be merged into the entity.

For example, let's first create and then append to a file using HTTP:

Request 1:

PUT /file HTTP/1.1
Host: server
Content-Length: 1

a

Request 2:

PUT /file HTTP/1.1
Host: server
Content-Range: 1-2/*
Content-Length: 1

a

How, let's see the file's contents...

Request 3:

GET /file HTTP/1.1
Host: server

HTTP/1.1 200 OK
Content-Length: 2

aa

This allows random file access, both READING and WRITING over HTTP. I just wanted to clarify, as I was researching the use of Content-Range in a WebDAV client I am developing, so perhaps this expanded information will prove useful to somebody else.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.