vote up 0 vote down star

It seems like this is easy to do in XSLT 2.0 but Microsoft in its infinite wisdom doesn't support XSLT 2.0 in Visual Studio 2005.

flag

They're on it: blogs.msdn.com/xmlteam/archive/… for two years already! There's bound to be some result soon! – Joachim Sauer Mar 9 at 17:36
Hmmm I wonder I can convince my boss to put this off until they get it right. :-) – Kevin Gale Mar 9 at 18:17

2 Answers

vote up 1 vote down check

One option would be to do all the parsing and calculation in XSLT.

However, another option would be to extend XSLT with a custom script function in C#:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:msxsl="urn:schemas-microsoft-com:xslt"
                xmlns:myext="urn:myExtension"
                exclude-result-prefixes="msxsl myext">

  <xsl:output method="xml" indent="yes"/>

  <msxsl:script language="C#" implements-prefix="myext">

    <![CDATA[

        public int SecondsFromIsoDuration(string isoDuration)
        {
            // parse and convert here;
        }

    ]]>

  </msxsl:script>


  <xsl:template match="@* | node()">
    <root durationInSeconds="{myext:SecondsFromIsoDuration(@duration)}" />
  </xsl:template>
</xsl:stylesheet>

The script function will be compiled at runtime to a temporary assembly and then executed. However, be aware to cache your XSLT because every XSLT-compilation will create a new assembly which is only unloaded when your application exits.

link|flag
Interesting, I didn't know it was so easy to embed C#. – Kevin Gale Mar 9 at 18:19
Yes, it is quite easy. However, some caveats. If you reference external assemblies you might break Mono compatibility, the problem I mentioned with assembly unloading, There are also extension objects, a better suited approach but unfortunately still with worse performance in .NET 3.5 than script. – divo Mar 9 at 21:42
vote up 2 vote down

With XSLT 1.0 you'll have to use substring-before() and substring-after() to split it into individual fields. Then just multiply. No doubt it is possible, although it seems very laborious.

link|flag
I was afraid of that :-( – Kevin Gale Mar 9 at 17:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.