line 250: new_environ['wsgi.input']=request.body
But: request.body is None at this stage
Moving the wsgi section in main.py's wsgibase() further down (above
the load cookies),
seems to work for me, but please someone that knows the code have a
look.
Also, this might be a good place to seek(0) the wsgi.input
# ##################################################
# expose wsgi hooks for convenience
# ##################################################
request.wsgi.environ = environ_aux(environ,request)
request.wsgi.start_response = lambda status='200', headers=[], \
exec_info=None, response=response: \
start_response_aux(status, headers, exec_info, response)
request.wsgi.middleware = lambda *a: middleware_aux
(request,response,*a)
# ##################################################
# load cookies
# ##################################################
HC