problem again.

a html form containes multi-file、text fields, it will submit to my wsgi
app,
in this wsgi app, I wanna catch all post data and then post to other server,
so, I need to get all raw post data and make a request to other server,

I have tried these ways,
1. environ["wsgi.input"].read(content_length)
none
2. environ["wsgi.input"].getvalue()
none
3. webob.Request(environ).body
none
4. webob.Request(environ).body_file.read()
none

have method can get form post data? please help

-- 
Regards,
alec



_______________________________________________
Paste-users mailing list
[email protected]
http://webwareforpython.org/cgi-bin/mailman/listinfo/paste-users

Reply via email to