Can an http server respond with data bit by bit - without it being in response to a "Range" request?
For example, say I want to continually stream text data back to a client - an almost never ending http stream of textual data, which is received by the client as the result of a single http request.
Can I do this without the client sending me a "Range" request in response to me sending an "Accept-Ranges" header?
And I do see code examples of servers streaming data back to clients, but are those clients expected to have sent a range header?