Re: Writing Multithreaded Client-Server in Python.

2005-09-06 Thread google
a bit of a late reply, sorry... Paul Rubin schreef: > [EMAIL PROTECTED] writes: > > > I suspect he was trying to say that BaseHTTPServer has no mechanism for > > > handling state. As you know, of course, this is most relevant across > > > multiple successive connections to a server from the same

Re: Writing Multithreaded Client-Server in Python.

2005-09-01 Thread Paul Rubin
[EMAIL PROTECTED] writes: > > I suspect he was trying to say that BaseHTTPServer has no mechanism for > > handling state. As you know, of course, this is most relevant across > > multiple successive connections to a server from the same client, and > > has little to do with threads. Usually you wo

Re: Writing Multithreaded Client-Server in Python.

2005-09-01 Thread google
Steve Holden schreef: > Paul Rubin wrote: > > [EMAIL PROTECTED] writes: > > > >>What it doesn't do (and what Sidd seems to search as is suggested by > >>his 'select()' remark) is handle each client in a separate thread. > > > > > > I don't know what you mean by that. It launches a new thread for

Re: Writing Multithreaded Client-Server in Python.

2005-08-30 Thread Steve Holden
Paul Rubin wrote: > [EMAIL PROTECTED] writes: > >>What it does do, is handle each request (from the same client too) in a >>new separate thread. Convenient if your processing intensive handle may >>otherwise slow down the main server process becoming less responsive to >>other requests. >>What it

Re: Writing Multithreaded Client-Server in Python.

2005-08-30 Thread Paul Rubin
[EMAIL PROTECTED] writes: > What it does do, is handle each request (from the same client too) in a > new separate thread. Convenient if your processing intensive handle may > otherwise slow down the main server process becoming less responsive to > other requests. > What it doesn't do (and what Si

Re: Writing Multithreaded Client-Server in Python.

2005-08-30 Thread google
Paul Rubin schreef: > "Sidd" <[EMAIL PROTECTED]> writes: > >I tried finding and example of multithreaded client-serve program in > > python. Can any one please tell me how to write a multithreaded > > client-server programn in python such that > > 1.It can handle multiple connections > > 2.It

Re: Writing Multithreaded Client-Server in Python.

2005-08-29 Thread Paul Rubin
"Sidd" <[EMAIL PROTECTED]> writes: >I tried finding and example of multithreaded client-serve program in > python. Can any one please tell me how to write a multithreaded > client-server programn in python such that > 1.It can handle multiple connections > 2.It uses actual threads and not selec

Writing Multithreaded Client-Server in Python.

2005-08-29 Thread Sidd
Hi, I tried finding and example of multithreaded client-serve program in python. Can any one please tell me how to write a multithreaded client-server programn in python such that 1.It can handle multiple connections 2.It uses actual threads and not select() or some other function -- http://ma