Large POST data is corrupted when using Django/PyISAPIe/IIS
I'm running into a problem with large POST data (>16384 bytes) when using Django 1.2.3, PyISAPIe v1.1.0-rc4, and IIS 7.5. For example, when submitting approx. 60kB of form data using POST, the following happens: The first 16kB block of POST data are correct The next 16kB block is a repeat of the first block The next 16kB is another repeat of the first block The rest (<16kB) is correct again The interesting part is that when using content-type="multipart/form-data" , it works fine. Using this information I tracked down the likely location of the bug to WSGIRequest._get_raw_post_data in django