XSLT engine Mediator 7.1.1.3 and java functions

I wish to get current date&time in my resulting document while processing XSLT thru Mediator 7.1.1.3 SagTransformer component.

It seems Mediator uses its own XSL engine (?) that does not allow use of java functions like <xsl:value-of select=“java:util.Date.new()”/>

In another context, when using passthru servlet to make XSLT on Tamino outputs, configured with Xalan, it works fine.

Any idea on how to overcome this issue with Mediator. Maybe configure Mediator to use Xalan as XSLT processor ?

Thanks

Mediator uses Xalan as its XSLT processor. The Mediator 7.1.1.3 version uses Xalan 1.2.2. This is quite old by web standards. Since Mediator 7.2.1.3 the Xalan version 2.4.1 has been in use. I am not sure we still support 7.1.1.3. A lot has changed since that release, in Xalan and in Mediator. I suggest you upgrade to a newer release.

However the java extension mechanism in Xalan was and is fully supported and should work in 7.1.1.3. A possible problem is that the java namespace documented in Xalan 1.2.2 is different than the one documented in Xalan 2.4.1. I don’t know if this is a document error or if the code has changed.

I did try the following stylesheet in Mediator and it worked for me. Perhaps you could compare this to your stylesheet to see if there are differences.

<xsl:stylesheet
xmlns:xsl=“XSLT Namespace” version=“1.0”
xmlns:java=“http://xml.apache.org/xalan/java
exclude-result-prefixes=“java”
>
<xsl:template match=“/”>
xsl:commentInsert a date using a java class.</xsl:comment>

<xsl:value-of select=“java:util.Date.new()”/>
<xsl:copy-of select=“.”/>

</xsl:template>
</xsl:stylesheet>

I hope this helps
Mike Duffy

JARs are never empty, they contain at least a manifest file