Herry wrote: > Having created a DOM tree, I created a test case that > simulates 1100 threads access to a DOM tree, each
The DOM implementation is *not* designed to be thread-safe for performance reasons. There is no reason to penalize *everyone* for the overhead of synchronization for those people that want to access the DOM from multiple threads. Therefore, you are required to add the appropriate locks to your application code. -- Andy Clark * [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
