On Nov 1, 10:40 am, "Tomáš Brambora" <
tomas.bramb...@gmail.com> wrote:
> I have a standard Django installation without any changes in the
> settings (except adding mysql db to the settings.py) and I'm sending
> the message to localhost:8000, so there is no proxy or anything else
> in the way. Still, the request body comes after me sending the
> response...
As I said in the other similar thread you created about this.
If you are getting empty input on read, then you are using hosting
mechanism that doesn't properly filter out chunked request content as
not being supported and instead assumes that content length of
request was 0.
In other words, chunked request content is not supported. Most hosting
mechanisms will flag it as an error. The internal Django development
server appears just to assume that content length on request is 0
since Content-Length header wouldn't be set. Thus why you are seeing
no input.
Graham
> On Fri, Oct 31, 2008 at 11:50 PM, Graham Dumpleton
>
> <
Graham.Dumple...@gmail.com> wrote: