XSLT compile error when using XslCompiledTransform.Load indirectly called from an application.
Posted
by infant programmer
on Stack Overflow
See other posts from Stack Overflow
or by infant programmer
Published on 2010-05-13T12:27:46Z
Indexed on
2010/05/13
12:34 UTC
Read the original article
Hit count: 184
I have a component written in C#. Among other things it performs XSL transform on XML data it collects. When I test this feature using another C# project that uses the component it works just fine. However when I export the component as a COM component and try to use this feature from an application it fails on the XslCompiledTransform.Load command with an XSLT compile error.
Here is the C# code: (click_me)
And the error I am getting is copied in a file. Please find it here: (click_me)
The XSLT file along with the number of templates also consists of "C# script" meant for some advanced calculations, which XSLT isn't capable of.
© Stack Overflow or respective owner