Java/XSLT: Cannot find a matching 1-argument function

后端 未结 2 1335
感情败类
感情败类 2021-01-18 05:38

I get the following error:

javax.servlet.ServletException: Cannot find a matching 1-argument function named {http://exslt.org/dynamic}evaluate()
at org.apach         


        
相关标签:
2条回答
  • 2021-01-18 06:05

    Somewhere in your XSLT you're referring to a function named "{http://exslt.org/dynamic}evaluate()" and you're not giving it the number of arguments it expects.

    Or... it's unable to find the extensions you're adding.

    0 讨论(0)
  • 2021-01-18 06:07

    Chances are you might be using an older version of Xalan.

    Try instead using the xalan:evaluate() extension.

    Read more on this in this thread.

    0 讨论(0)
提交回复
热议问题