如何在Xalan中使用XSL函数?

时间:2011-05-26 16:27:47

标签: java xml xslt xalan

这是我的XSL:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:r="my-own-namespace"
  version="2.0" exclude-result-prefixes="xs">
  <xsl:template match="/">
    <xsl:value-of select="r:foo('test')"/>
  </xsl:template>
  <xsl:function name="r:foo">
    <xsl:value-of select="$val"/>
  </xsl:function>
</xsl:stylesheet>

这就是Xalan 2.7.1(从Java中使用)所说的:

(Location of error unknown)java.lang.NoSuchMethodException: For extension 
function, could not find method 
org.apache.xml.utils.NodeVector.foo([ExpressionContext,] ).

是什么?如何解决问题?

1 个答案:

答案 0 :(得分:3)

AFAIK Xalan仅实现XSLT 1.0,xsl:function是XSLT 2.0。您应该使用XSLT 2.0处理器,例如saxon