Re: Newbie question about a web server

2007-08-22 Thread Frank Millman
Frank Millman wrote: > Hi all > > I have just started to dabble in writing my own web server. > > I googled for 'python web server', and this is the first hit - > >http://fragments.turtlemeat.com/pythonwebserver.php > [...] > > When responding to the POST data received, it sends a 301 response,

Re: Newbie question about a web server

2007-08-20 Thread I V
On Mon, 20 Aug 2007 00:02:47 -0700, Frank Millman wrote: > When responding to the POST data received, it sends a 301 response, no > headers, and then the html page. [...] > According to the notes, "You don't have to know much about the HTTP > protocol at all. Except some basic that when the client

Re: Newbie question about a web server

2007-08-20 Thread Chris Allen
On Aug 20, 12:02 am, Frank Millman <[EMAIL PROTECTED]> wrote: > Hi all > > I have just started to dabble in writing my own web server. > > I googled for 'python web server', and this is the first hit - > >http://fragments.turtlemeat.com/pythonwebserver.php > > It has the source code for a simpl

Newbie question about a web server

2007-08-20 Thread Frank Millman
Hi all I have just started to dabble in writing my own web server. I googled for 'python web server', and this is the first hit - http://fragments.turtlemeat.com/pythonwebserver.php It has the source code for a simple web server, based on HTTPServer and BaseHTTPRequestHandler. It demonstra