David Hirschfield wrote:
> 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
>
Much, and my preliminary answer is, I have no clue :-)
But knowing that python will throw an exceptions whe
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 proce
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 r
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 quest