我正在尝试执行我的xsl文件并收到错误消息,其中显示未找到函数new。
执行我的xsl:xsltproc GetRequestTransformation.xsl xsltTest.xml
每当我尝试在Linux机器上执行上述命令时,我都会收到以下错误:
compilation error: file GetRequestTransformation.xsl line 5 element stylesheet
xsl:version: only 1.0 features are supported
xmlXPathCompOpEval: function new not found
XPath error : Unregistered function
xmlXPathCompOpEval: parameter error
runtime error: file GetRequestTransformation.xsl line 15 element variable
Failed to evaluate the expression of variable 'currentDate'.
这是我的XSLT文件 GetRequestTransformation.xsl :
<?xml version='1.0' encoding='UTF-8'?>
<xsl:stylesheet version='2.0'
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
xmlns:java="http://xml.apache.org/xslt/java" xmlns:SimpleDateFormat="java.text.SimpleDateFormat"
xmlns:Date="java.util.Date" exclude-result-prefixes="java SimpleDateFormat Date">
<xsl:template match="/">
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:max="http://www.ibm.com/maximo">
<soapenv:Header/>
<soapenv:Body>
<max:CreateWS_INCID_AFEC_TB>
<max:WS_INCID_AFEC_TBSet>
<max:DURACION>
<xsl:variable name="affectedFinish" select='/tTroubleticket/alarms/tTroubleticketalarm/clearDate' />
<xsl:variable name="affectedStart" select='/tTroubleticket/alarms/tTroubleticketalarm/activationDate' />
<xsl:variable name="currentDate" select="SimpleDateFormat:format(SimpleDateFormat:new('yyyy-MM-dd HH:mm:ss'), Date:new() />
<xsl:choose>
<xsl:when test="$affectedFinish != null">
<xsl:value-of select="$affectedFinish - $affectedStart" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$currentDate - $affectedStart" />
</xsl:otherwise>
</xsl:choose>
</max:DURACION>
</max:WS_INCID_AFEC_TBSet>
</max:CreateWS_INCID_AFEC_TB>
</soapenv:Body>
</soapenv:Envelope>
</xsl:template>
</xsl:stylesheet>
映射XML文件 xsltTest.xml :
<tTroubleticket>
<alarms>
<tTroubleticketalarm>
<activationDate>2015-04-01 12:42:22.0</activationDate>
<clearDate>null</clearDate>
</tTroubleticketalarm>
</alarms>
</tTroubleticket>
您能否尝试找出我的xsl文件的问题。在执行该命令之前,我是否遗漏了什么?我该如何解决?
答案 0 :(得分:1)
第14行,在Date:new()
之后:关闭括号和引号:
<xsl:variable name="currentDate" select="SimpleDateFormat:format(SimpleDateFormat:new('yyyy-MM-dd HH:mm:ss'), Date:new())" />
FWIW,您不需要使用Java来获取当前日期:libxslt和Xalan都支持EXSLT date:date()
和date:time()
扩展函数。 libxslt还支持date:date-time()
和date:difference()
。