My problem is that POST data is not being copied into the request object that my Django code is getting, but the problem only happens with WSGI.
When I fill in the web form with a browser, the POST data comes through correctly: request.method is POST and the QueryDict has my parameters. But when I use code (python urllib) to POST the data, it does not come through: request.method is set to GET and there are no parameters (QueryDict). I have checked that this client is really sending a POST request. I have done this with CSRF switched on and off, and it makes no difference. I have found this to be a WSGI problem, because there is another installation of the same application that uses mod_python, and that works perfectly. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

