Re: Using SimpleXMLRPCServer in a Windows Service

2006-11-29 Thread Gabriel Genellina
At Tuesday 28/11/2006 05:49, Rudy Schockaert wrote: I found the problem. Actually both pieces of code work now. The problem was that when I run the SimpleXMLRPCService in a Windows Service, the STDERR needs to be redirected to a real file. I guess some kind of buffer overflow occurs when you don

Re: Using SimpleXMLRPCServer in a Windows Service

2006-11-28 Thread Rudy Schockaert
I found the problem. Actually both pieces of code work now. The problem was that when I run the SimpleXMLRPCService in a Windows Service, the STDERR needs to be redirected to a real file. I guess some kind of buffer overflow occurs when you don't do this. I added the following lines: def SvcStop

Re: Using SimpleXMLRPCServer in a Windows Service

2006-11-24 Thread Gabriel Genellina
At Thursday 23/11/2006 06:52, Rudy Schockaert wrote: After some Googling I found a post of someone who wanted to do exactly as what I want to do now. There is however a problem in his code that makes the service fails after the first connection. I slightly modified his code and now I can run the

Using SimpleXMLRPCServer in a Windows Service

2006-11-23 Thread Rudy Schockaert
After some Googling I found a post of someone who wanted to do exactly as what I want to do now. There is however a problem in his code that makes the service fails after the first connection. I slightly modified his code and now I can run the service longer before I run into trouble. I then tried