Run an exe from XSLT to obtain a transformed value
Hello,
this is my first time using XSLT.
I have to perform a specific task :
in order to get the value of the transformed entry I must run an exe file.
Is there a way to do this directly from XSLT:
<xsl:attribute name="attr_name">
<xsl:value-of select= perform_exe_on_value("@attr_name"/>)
</xsl:attribute>
I know this is not valid syntax, it's semi-pseudo-code
I read about integrated extensions but I can't use .net or java for this.
Anyone tried to do this before?
Thanks,
Eran
|