Article ID: 320011 - Last Review: September 27, 2005 - Revision: 3.1 FIX: System.InvalidOperationException If You Use XslTransform in Multithreaded ScenarioThis article was previously published under Q320011 On This PageSYMPTOMS
If you share an XslTransform object from the System.Xml.Xsl namespace between multiple threads, you may receive the following error message when you build your application:
System.InvalidOperationException: Collection was modified; enumeration operation may not execute.
at System.Collections.ArrayListEnumeratorSimple.MoveNext()
at System.Xml.XPath.XsltFunction.SetXsltContext(XsltContext context)
at System.Xml.XPath.CompiledXpathExpr.SetContext(XmlNamespaceManager nsManager)
at System.Xml.Xsl.Processor.GetValueQuery(Int32 key)
at System.Xml.Xsl.Processor.ValueOf(ActionFrame context, Int32 key)
at System.Xml.Xsl.ValueOfAction.Execute(Processor processor, ActionFrame frame)
at System.Xml.Xsl.ActionFrame.Execute(Processor processor)
at System.Xml.Xsl.Processor.Execute()
at System.Xml.Xsl.XslTransform.Transform(IXPathNavigable input,XsltArgumentList args, TextWriter output)
CAUSE
This problem occurs because of a bug in the System.Xml.dll assembly.
RESOLUTIONTo resolve this problem, obtain the latest service pack for Microsoft .NET Framework. For additional information, click the following article number to view the article in the
Microsoft Knowledge Base:
318836
(http://support.microsoft.com/kb/318836/EN-US/
)
INFO: How to Obtain the Latest .NET Framework Service Pack
NOTE: Apply this fix to systems that already have Microsoft .NET Framework with Service Pack 1 installed.The English version of this fix should have the following file attributes or later: Date Version Size File name ------------------------------------------------------------- 03-APR-2002 1.0.3705.223 1,294,336 bytes System.Xml.dll WORKAROUNDTo work around this problem, use the lock statement (in Microsoft Visual C# .NET) or the SyncLock...End SyncLock construct (in Microsoft Visual Basic .NET) to protect the use of the Transform method. However, this workaround may incur an unacceptable performance penalty, depending on the design and the purpose of your application.Another workaround that may offer better performance is to create a solution that implements a pool or a cache of N+1 XslTransform objects, where N is the number of processors on the computer. STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article. This problem was first corrected in Microsoft .NET Framework Service Pack 2 (SP2). APPLIES TO
| Article Translations
|

Back to the top
