Re: Question about xmlrpc and threading

2006-02-17 Thread Martin P. Hellwig
David Hirschfield wrote: cut My question was whether this is allowed? Can two calls be made via the same ServerProxy instance while a request is already underway? Clearer? -Dave cut Much, and my preliminary answer is, I have no clue :-) But knowing that python will throw an exceptions

Question about xmlrpc and threading

2006-02-15 Thread David Hirschfield
An xmlrpc client/server app I'm writing used to be super-simple, but now threading has gotten into the mix. On the server side, threads are used to process requests from a queue as they come in. On the client side, threads are used to wait on the results of requests to the server. So the

Re: Question about xmlrpc and threading

2006-02-15 Thread Martin P. Hellwig
David Hirschfield wrote: An xmlrpc client/server app I'm writing used to be super-simple, but now threading has gotten into the mix. On the server side, threads are used to process requests from a queue as they come in. On the client side, threads are used to wait on the results of

Re: Question about xmlrpc and threading

2006-02-15 Thread David Hirschfield
I definitely didn't make it clear enought what I was talking about. I know all about the thread issues as far as namespaces go and that sort of thing. Let me try and be clearer: Forget how my xmlrpc server is implemented, it doesn't matter for this question. Just imagine it works and will