Skip to main content

All Questions

Filter by
Sorted by
Tagged with
1 vote
0 answers
916 views

Use HttpListener to send HTTP trailer in chunked response

I Implemented a HttpListener to process post requests. I need to stream data in the response and then send a trailer. See: HTTP Trailer Example I've gone through the HttpListenerResponse Source Code ...
ren's user avatar
  • 21
0 votes
0 answers
808 views

http chunked encoding: response works even without the header

According the spec, Transfer-Encoding is required for the chunked behavior to work. However, during debugging I observe that when the header is not in the response, the client appears to handle it ...
user1992313's user avatar
6 votes
3 answers
9k views

If a HTTP/1.0 client requests Connection: keep-alive, will it understand chunked encoding?

If my HTTP server gets an HTTP/1.0 request with the "Connection: keep-alive" header, is it a fair bet that the client will understand "Transfer-Encoding: chunked"? Essentially, I'm trying to decide ...
Ian Goldby's user avatar
  • 6,126