Rank: Newbie
Joined: 10/24/2007 Posts: 8
|
In case anyone would ever consider using this XSLT extention: don't bother. This function results in an error message which can't be solved.
The error is caused by the fact that the System.Xml.XPath.XPathArrayIterator class is not supported anymore in the .NET 2.0 framework. The type is dynamically created on line 52 of the xslt\eXslt\ExsltCommon.cs:
Type arrayIteratorType = systemXml.GetType("System.Xml.XPath.XPathArrayIterator");
This results in a "null" reference because this class is not available anymore in the .net 2.0 framework (as far as I know).
|