Any HTTP proxies with explicit, configurable support for request/response buffering and delayed connections? Any HTTP proxies with explicit, configurable support for request/response buffering and delayed connections? nginx nginx

Any HTTP proxies with explicit, configurable support for request/response buffering and delayed connections?


What about using both nginx and Squid (client — Squid — nginx — backend)? When returning data from a backend, Squid does convert it from C-T-E: chunked to a regular stream with Content-Length set, so maybe it can normalize POST also.


Fiddler, a free tool from Telerik, does at least some of the things you're looking for.

Specifically, go to Rules | Custom Rules... and you can add arbitrary Javascript code at all points during the connection. You could simulate some of the things you need with sleep() calls.

I'm not sure this method gives you the fine buffering control you want, however. Still, something might be better than nothing?