Re: cgi and POST

2009-08-28 Thread Ken Seehart
D'Arcy J.M. Cain wrote: On Fri, 28 Aug 2009 13:59:57 -0700 Ken Seehart wrote: Using cgi, how do I get the /data /(not the uri arguments) originating from a POST that did not originate from a form. You don't care where it came from. Just treat it exactly as if it came from a form.

Re: cgi and POST

2009-08-28 Thread D'Arcy J.M. Cain
On Fri, 28 Aug 2009 13:59:57 -0700 Ken Seehart wrote: > Using cgi, how do I get the /data /(not the uri arguments) originating > from a POST that did not originate from a form. You don't care where it came from. Just treat it exactly as if it came from a form. -- D'Arcy J.M. Cain |

cgi and POST

2009-08-28 Thread Ken Seehart
I can't seem to find an answer to this simple question on the web, and the documentation doesn't seem to indicate how to do this... On the client I have: urllib.urlopen(uri, data) This does a POST, but it's not obvious to me how this maps onto the various cgi examples which assume that