Re: Design philosophy of HTTPServer and BaseHTTPRequestHandler

2007-08-22 Thread Gabriel Genellina
En Wed, 22 Aug 2007 17:27:01 -0300, tzuchien.chiu <[EMAIL PROTECTED]> escribi�: > On 22 ago, 14:45, Gabriel Genellina <[EMAIL PROTECTED]> wrote: >> The server is permanent; request handler instances are created and >> destroyed as HTTP requests arrive and are processed. >> You should store any p

Re: Design philosophy of HTTPServer and BaseHTTPRequestHandler

2007-08-22 Thread tzuchien.chiu
On 22 ago, 14:45, Gabriel Genellina <[EMAIL PROTECTED]> wrote: > The server is permanent; request handler instances are created and > destroyed as HTTP requests arrive and are processed. > You should store any permanent info in the server; your > "BaseHTTPRequestHandler-derived class" can reference

Re: Design philosophy of HTTPServer and BaseHTTPRequestHandler

2007-08-22 Thread Gabriel Genellina
On 22 ago, 06:50, "tzuchien chiu gmail com" <[EMAIL PROTECTED]> wrote: > Hello, everyone. > > Several instances of a same script, which accepts parameters and does > a lengthy job, are executed on a remote machine. I want to couple the > script with a tiny HTTP server so that I can connect to th