How to check in CGI if client disconnected
Gabriel Genellina
gagsl-py2 at yahoo.com.ar
Sun Aug 24 16:21:52 EDT 2008
En Sun, 24 Aug 2008 14:25:03 -0300, Vishal <vrshah at gmail.com> escribió:
> I am writing a CGI to serve files to the caller. I was wondering if
> there is any way to tell in my CGI if the client browser is still
> connected. If it is not, i want to execute some special code before
> exiting.
>
> Is there any way to do this? Any help on this is appreciated :)
I don't think so. A CGI script runs once per request, and exits. The server may find that client disconnected, but that may happen after the script finished.
--
Gabriel Genellina
More information about the Python-list
mailing list