Re: [Tutor] Stopping a webservice

2010-10-21 Thread ALAN GAULD
Forwarding to list "Timo" wrote >> >> >>The plans are to run this on my webserver. I created a webpage with a start >>>and stop button, the starting works great. But how could I remember this >>>class to call "class.shutdown = True" any given time when I press the stop >>>button? >>> > There

Re: [Tutor] Stopping a webservice

2010-10-20 Thread Alan Gauld
"Timo" wrote I have written a GUI and when I click the Quit-button, I do "connection.shutdown = True", which works great. The plans are to run this on my webserver. I created a webpage with a start and stop button, the starting works great. But how could I remember this class to call "class

[Tutor] Stopping a webservice

2010-10-20 Thread Timo
Hello, I have written a Python script that constantly checks for incoming connections. It is a class and runs a while loop until shutdown is set to True. Something like: class Connection(object): def __init__(self): self.shutdown = False def mainloop(self): while not self