>The libraries that come with the Xerces package >... are they single threaded or multithreaded ?
But note that being compiled as multithreaded does not, by itself, mean all the functions are themselves thread-safe. I believe the DOM implementation, for example, allows multiple threads to be working with DOMs simultaneously but does not allow multiple threads to safely access a single DOM document at the same time; if you need to share a DOM, you need to work out your own handshaking between threads to make that operate safely. (The DOM spec's authors considered threadsafety and decided that since most things you do to a DOM involve several DOM operations in succesion, locking should be handled at the application level rather than the DOM API level.) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
