In WSGI, post data is consumed by reading the file-like object environ['wsgi.input']
. If a second element in the stack also wants to read post data it may hang the program by reading when there's nothing more to read.
How should I copy the POST data so it can be processed multiple times?