Am writing some InlineXslt script in scripting functoid of BizTalk(2010) mapping file in VisualStudio2010.(It supports only version 1.0).
I need to use current date-time at many places in my xslt script. To get current date-time, I was using Date-time functoid or writing some C# code in one scripting functoid and passing it as a parameter to another scripting functoid (where XSLT script is written).
But now if I generate XSL file out of mapper, it contains C# namespace and C# code.
Now I want to do it using only XSLT. I want to include EXSLT namespace (http:/exslt.org/dates-and-times) and extension-element-prefixes="date" , and use a function "date:date-time()" to get current date and time.
Instead of modifying the generated XSL file, I want to achieve this at an earlier stage so that when I generate xsl file out of BizTalk mapper, it contains only XSLT script.
Is it possible to include this namespace in InlineXslt or Inlinexslt template of scripting functoid, so that I can use the function date-time() while writing XSLT script in functoid?