Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is my 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>

This is what Xalan 2.7.1 (used from Java) is saying:

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

What is is about? How to solve the problem?

share|improve this question
Also note that your function needs an xsl:param e.g. <xsl:function name="r:foo"><xsl:param name="val"/><xsl:value-of select="$val"/></xsl:function>. – Martin Honnen May 26 '11 at 16:58

1 Answer

up vote 2 down vote accepted

AFAIK Xalan implements only XSLT 1.0, and xsl:function is XSLT 2.0. You should use an XSLT 2.0 processor, such as saxon

share|improve this answer
Yeah, exactly. Saxon 8.7 parses this code perfectly. – yegor256 May 26 '11 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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