This repository was archived by the owner on Nov 1, 2018. It is now read-only.
This repository was archived by the owner on Nov 1, 2018. It is now read-only.
Clarify response wire protocol details, buffering, chunked, content-length, etc. #7
Closed
Description
When proxying behind IIS/Express there are a few un-expected side-effects. We need to at least document these, but also consider how to work around them if needed. See the affected tests in Universe\ServerTests\test\ServerComparison.FunctionalTests\ResponseTests.cs
- Buffering vs streaming - what buffering is done by the platform handler or by default IIS scenarios? How can be enable full streaming?
- Chunked vs Content-length - as a result of the default buffering, chunked responses are converted to content-length.
- Connection: close - This only appears to close the connection between the proxy and the back-end server, it does not close the connection with the client.