> I am writing a multi-threaded server to catch and process
> XML from multiple clients.

> I want to be able to create the validating parser up fromt

> and then clone it into each thread (one per connection), but
> I cannot seem to find a simple way to copy my parser once I
> have it built.

There is no way, as far as I know.

> Or am I going to have to create a new parser from scratch for
> each new thread ?

Yes, although you can re-use parser instances, so you could have a pool of parsers.

Dave

Reply via email to