从XSLT调用Java函数给出“无法编译样式表”

时间:2013-06-20 16:25:40

标签: xslt

我已经完成了类似问题的所有帖子,但无法解决我的问题。我的XSLT如下所示:

XSLT:

<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:proxy="java:com.hp.gpp.pp.util.UrlUtils"
    extension-element-prefixes="proxy">

    <xsl:output method="xml" version="1.0" indent="yes" />

    <xsl:param name="proxy" />
    <xsl:variable name="baseurl"
        select="/html/head/base/@href"/>

    <!-- copy input to output -->
    <xsl:template match='*|@*'>
        <xsl:copy>
            <xsl:apply-templates select='node()|@*' />
        </xsl:copy>
    </xsl:template>

    <xsl:template match="*[@href]">
        <xsl:copy>
            <xsl:attribute name="href"><xsl:value-of
                select="proxy:rewriteRelative($proxy,$baseurl,@href)" /></xsl:attribute>
            <xsl:apply-templates select="node()|@*[name(.)!='href']" />
        </xsl:copy>
    </xsl:template>

    <xsl:template match="*[@src]">
        <xsl:copy>
            <xsl:attribute name="src"><xsl:value-of
                select="proxy:rewriteRelative($proxy,$baseurl,@src)" /></xsl:attribute>
            <xsl:apply-templates select="node()|@*[name(.)!='src']" />
        </xsl:copy>
    </xsl:template>

    <!-- rewrite <a href> -->
    <xsl:template match="base">
    </xsl:template>

</xsl:stylesheet>

和Java代码:

XSLTemplateFactory templateFactory = new DefaultTemplateFactory();
            Templates templates = templateFactory.getTemplatesFromURL(XSS_FILE_NAME);
Source xmlStrim = new StreamSource(reader);
Result oStream = new StreamResult(res.getWriter());

Transformer transformer = templates.newTransformer();
transformer.setParameter("proxy", new UrlUtils(req, res));
transformer.transform(xmlStrim, oStream);

不知何故,代码在本地工作,但在Jboss上部署时给出:

ERROR:  'The first argument to the non-static Java function 'rewriteRelative' is not a valid object reference.'
FATAL ERROR:  'Could not compile stylesheet'
com.hp.gpp.pp.exception.ProxyPortletException: error.transformer : Could not compile stylesheet

此处无法找到问题。有人可以帮助我吗?

谢谢&amp;问候, Rikin

2 个答案:

答案 0 :(得分:0)

您需要从Java中删除transformer.setParameter调用,并从XSLT中删除相应的<xsl:param name="proxy" />指令。

然后将名称空间前缀绑定到Java类,如此

<xsl:script implements-prefix="proxy" language="java" src="java:com.hp.gpp.pp.util.UrlUtils"/>

然后你可以写

<xsl:attribute name="href">
  <xsl:value-of select="proxy:rewriteRelative($baseurl, @href)" />
</xsl:attribute>

我认为rewriteRelative只需要两个参数:基本URL和相对URL?我不清楚之前的第一个参数$proxy是什么,但我猜它不属于那里。

答案 1 :(得分:0)

尝试使用XSLT 2.0'样式表'进行转换时出现此错误,但我使用的是XSLT 1.0解析器。

我不确定这是否适用于您的错误。出于这个原因,我在stackoverflow中发布了一个单独的Q&amp; A:Why do I get the following exception 'first argument to the non-static Java function'?