Re: SimpleHTTPServer, queries unhandled?

2004-12-27 Thread Kartic
Try this in IDLE: import CGIHTTPServer CGIHTTPServer.test() This starts serving right away. You can also look at CGIHTTPServer.py in your Python/Lib to see how test() has been implemented. test() starts serving from the current directory (of running python). If you create a folder called cgi-bin

Re: SimpleHTTPServer, queries unhandled?

2004-12-27 Thread Steve Holden
Bryan Rasmussen wrote: Hey just doing some preliminary testing with SimpleHTTPServer, and i noticed that when i request a resource with a query string parameters that this was not handled. is this correct, or is there a method to set query string handling? Well, since SimpleHTTPServer doesn't imp

SimpleHTTPServer, queries unhandled?

2004-12-26 Thread Bryan Rasmussen
Hey just doing some preliminary testing with SimpleHTTPServer, and i noticed that when i request a resource with a query string parameters that this was not handled. is this correct, or is there a method to set query string handling? -- Bryan Rasmussen -- http://mail.python.org/mailman/lis