I am Using saxon EE processor for conversion of XML with XSLT-2.0. but its giving error for XSL file .
Below is the Code for XSL File
<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl=";
xmlns:plm=";
xmlns:setfile ="/CMEReportXalanExtension"
xmlns:date="java:java.util.Date">
<xsl:key name="Occurrence" match="plm:Occurrence | plm:WorkAreaOccurrence" use="@id"/>
<xsl:key name="Operation" match="plm:Operation" use="@id"/>
<xsl:key name="OperationRevision" match="plm:OperationRevision" use="@id"/>
<xsl:key name="Process" match="plm:Process | plm:Operation" use="@id"/>
<xsl:key name="ProcessOccurrence" match="plm:ProcessOccurrence | plm:Occurrence | plm:WorkAreaOccurrence" use="@id"/>
<xsl:key name="ProcessRevision" match="plm:ProcessRevision | plm:OperationRevision" use="@id"/>
<xsl:key name="ProcessView" match="plm:ProcessView" use="@id"/>
<xsl:key name="ProcOpRevision" match="plm:ProcessRevision | plm:OperationRevision" use="@id"/>
<xsl:output method="html" indent="yes"/>
<xsl:param name="outDir" select="setfile:getCurrentDir(setfile:new())"/>
<xsl:variable name="roid" select="/plm:PLMXML/plm:ProcessView/@rootRefs"/><!-- rootRef instead of prima.. -->
<!-- Assuming that the primaryOccurrenceRef(& NO MULTIPLE ENTRY POINTS) is always a ProcessOccurrence -->
<xsl:variable name="rpoe" select="key('ProcessOccurrence',$roid)"/>
<xsl:variable name="rprid" select="substring-after($rpoe/@instancedRef,'#')"/>
<xsl:variable name="root" select="key('ProcessRevision',$rprid)"/>
<xsl:template match="/">
<xsl:call-template name="genData">
<xsl:with-param name="curProc" select="$root"/>
<xsl:with-param name="occStr" select="$rpoe/@occurrenceRefs"/>
</xsl:call-template>
</xsl:template>
<xsl:template name="genData">
<xsl:param name="curProc"/>
<xsl:param name="occStr"/>
<html>
<head>
<title>Process: <xsl:value-of select="$curProc/@name"/></title>
</head>
<body BGCOLOR="#FFFFFF" link="#0000FF" vlink="#660066">
<br/>
<!-- Support for Foxfire browser requires specific class="sample" on all table elements -->
<table class="sample"><!-- main table -->
<xsl:call-template name="heading">
<xsl:with-param name="title" select="'Process Report'"/>
</xsl:call-template>
<tr>
<td>
<xsl:variable name="procid">
<xsl:call-template name="cleanId">
<xsl:with-param name="id" select="$curProc/@masterRef"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="proc" select="key('Process',$procid)"/>
<xsl:value-of select="concat($proc/@catalogueId,'/',$curProc/@revision,' - ',$curProc/@name)"/>
</td>
</tr>
<tr><!-- main table:row6::sub level -->
<td>
<hr color="#000000"/>
<table class="sample">
<tr>
<th>Name</th>
</tr>
<xsl:call-template name="createCL">
<xsl:with-param name="chStr" select="$occStr"/>
</xsl:call-template>
</table>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>
<xsl:template name="createCL">
<xsl:param name="chStr"/>
<xsl:variable name="genele" select="key('ProcessOccurrence',$chStr)"/>
<xsl:if test="name($genele)='ProcessOccurrence'">
<xsl:call-template name="creCLext">
<xsl:with-param name="genel" select="$genele"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="creCLext">
<xsl:param name="genel"/>
<xsl:variable name="procid" select="substring-after($genel/@instancedRef,'#')"/>
<xsl:variable name="procele" select="key('ProcOpRevision',$procid)"/>
<xsl:variable name="pre1" select="substring-after($genel/@predecessorRefs,'#')"/>
<xsl:variable name="pre2" select="key('ProcessOccurrence',$pre1)"/>
<xsl:variable name="preid" select="substring-after($pre2/@instancedRef,'#')"/>
<xsl:variable name="prele" select="/plm:PLMXML/*[@id=$preid]"/>
<tr>
<td align="center"><a>
<xsl:attribute name="href">
<xsl:value-of select="concat($procid,'.html')"/>
</xsl:attribute>
<xsl:value-of select="$procele/@name"/>
</a></td>
</tr>
<xsl:result-document href="file:/{$outDir}/{$procid}.html">
<xsl:call-template name="genopr">
<xsl:with-param name="curOpr" select="$procele"/>
<xsl:with-param name="genel" select="$genel"/>
</xsl:call-template>
</xsl:result-document>
</xsl:template>
<xsl:template name="genopr">
<xsl:param name="curOpr"/>
<xsl:param name="genel"/>
<html>
<head>
<title>Operation: <xsl:value-of select="$curOpr/@name"/></title>
</head>
<body BGCOLOR="#FFFFFF" link="#0000FF" vlink="#660066">
<br/>
<table class="sample"><!-- main table -->
<xsl:call-template name="heading">
<xsl:with-param name="title" select="'Operation Report'"/>
</xsl:call-template>
<tr>
<td>
<xsl:variable name="procid">
<xsl:call-template name="cleanId">
<xsl:with-param name="id" select="$curOpr/@masterRef"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="proc" select="key('Process',$procid)"/>
<xsl:value-of select="concat($proc/@catalogueId,'/',$curOpr/@revision,' - ',$curOpr/@name)"/>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>
<xsl:template name="heading">
<xsl:param name="title"/>
<tr><!-- main table:row1::heading-->
<th>
<div align="left">
</div>
<div align="center"><b><font size="+2"><xsl:value-of select="$title"/></font></b></div><br/>
</th>
</tr>
</xsl:template>
<xsl:template name="cleanId">
<xsl:param name="id"/>
<xsl:choose>
<xsl:when test="contains($id, '#')">
<xsl:value-of select="substring-after($id,'#')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$id"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
Below is Java code
ProfessionalTransformerFactory tFactory = new ProfessionalTransformerFactory();
Configuration saxonConfig = tFactory.getConfiguration();
JavaExtensionLibrary javaLib = new JavaExtensionLibrary( (ProfessionalConfiguration) saxonConfig );
javaLib.declareJavaClass( "/CMEReportXalanExtension",
CMEReportXalanExtension.class );
( (ProfessionalConfiguration) saxonConfig ).setExtensionBinder( "java", javaLib );
XslImportResolver myResolve = new XslImportResolver();
tFactory.setURIResolver( myResolve );
javax.xml.transform.Transformer transformer = tFactory.newTransformer
(new javax.xml.transform.stream.StreamSource(xslLocation));
// Add debugging output if it is definded in the Registry.
Registry registry = Registry.getRegistry( this );
CMEReportXalanDebug.addDebugMode(registry,transformer);
// 3. Use the Transformer to perform the transformation and send the
// the output to a Result object.
transformer.transform( new StreamSource( xmlLocation ),
new StreamResult( new FileOutputStream( htmlLocation ) ) );
And I am getting below error
net.sf.saxon.s9api.SaxonApiException: Errors were reported during stylesheet compilation at net.sf.saxon.s9api.XsltCompilerpile(XsltCompiler.java:862) at net.sf.saxon.jaxp.SaxonTransformerFactory.newTemplates(SaxonTransformerFactory.java:154) at net.sf.saxon.jaxp.SaxonTransformerFactory.newTransformer(SaxonTransformerFactory.java:110) at com.teamcenter.rac.cme.cmereport.CMEReportProcessing.applyStylesheet(CMEReportProcessing.java:276) at com.teamcenter.rac.cme.cmereport.CMEReportPanel.applyXSL(CMEReportPanel.java:578) at com.teamcenter.rac.cme.cmereport.CMEReportOperations.generateReport(CMEReportOperations.java:107) at com.teamcenter.rac.cme.cmereport.CMEReportOperations.executeOperation(CMEReportOperations.java:593) at com.teamcenter.rac.aif.AbstractAIFOperation.runEx(Unknown Source) at com.teamcenter.rac.kernel.services.impl.TCOperationService.performOperation(Unknown Source) at com.teamcenter.rac.aif.kernel.AbstractAIFSession.performOperation(Unknown Source) at com.teamcenter.rac.aif.AbstractAIFOperation.run(Unknown Source) at .eclipse.core.internal.jobs.Worker.run(Worker.java:63) Caused by: net.sf.saxon.trans.XPathException: Errors were reported during stylesheet compilation at net.sf.saxon.style.StylesheetModule.loadStylesheet(StylesheetModule.java:262) at net.sf.saxon.style.CompilationpileSingletonPackage(Compilation.java:101) at net.sf.saxon.s9api.XsltCompilerpile(XsltCompiler.java:859) ... 11 more
I am Using saxon EE processor for conversion of XML with XSLT-2.0. but its giving error for XSL file .
Below is the Code for XSL File
<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3./1999/XSL/Transform"
xmlns:plm="http://www.plmxml./Schemas/PLMXMLSchema"
xmlns:setfile ="http://com.teamcenter.rac.cme.cmereport/CMEReportXalanExtension"
xmlns:date="java:java.util.Date">
<xsl:key name="Occurrence" match="plm:Occurrence | plm:WorkAreaOccurrence" use="@id"/>
<xsl:key name="Operation" match="plm:Operation" use="@id"/>
<xsl:key name="OperationRevision" match="plm:OperationRevision" use="@id"/>
<xsl:key name="Process" match="plm:Process | plm:Operation" use="@id"/>
<xsl:key name="ProcessOccurrence" match="plm:ProcessOccurrence | plm:Occurrence | plm:WorkAreaOccurrence" use="@id"/>
<xsl:key name="ProcessRevision" match="plm:ProcessRevision | plm:OperationRevision" use="@id"/>
<xsl:key name="ProcessView" match="plm:ProcessView" use="@id"/>
<xsl:key name="ProcOpRevision" match="plm:ProcessRevision | plm:OperationRevision" use="@id"/>
<xsl:output method="html" indent="yes"/>
<xsl:param name="outDir" select="setfile:getCurrentDir(setfile:new())"/>
<xsl:variable name="roid" select="/plm:PLMXML/plm:ProcessView/@rootRefs"/><!-- rootRef instead of prima.. -->
<!-- Assuming that the primaryOccurrenceRef(& NO MULTIPLE ENTRY POINTS) is always a ProcessOccurrence -->
<xsl:variable name="rpoe" select="key('ProcessOccurrence',$roid)"/>
<xsl:variable name="rprid" select="substring-after($rpoe/@instancedRef,'#')"/>
<xsl:variable name="root" select="key('ProcessRevision',$rprid)"/>
<xsl:template match="/">
<xsl:call-template name="genData">
<xsl:with-param name="curProc" select="$root"/>
<xsl:with-param name="occStr" select="$rpoe/@occurrenceRefs"/>
</xsl:call-template>
</xsl:template>
<xsl:template name="genData">
<xsl:param name="curProc"/>
<xsl:param name="occStr"/>
<html>
<head>
<title>Process: <xsl:value-of select="$curProc/@name"/></title>
</head>
<body BGCOLOR="#FFFFFF" link="#0000FF" vlink="#660066">
<br/>
<!-- Support for Foxfire browser requires specific class="sample" on all table elements -->
<table class="sample"><!-- main table -->
<xsl:call-template name="heading">
<xsl:with-param name="title" select="'Process Report'"/>
</xsl:call-template>
<tr>
<td>
<xsl:variable name="procid">
<xsl:call-template name="cleanId">
<xsl:with-param name="id" select="$curProc/@masterRef"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="proc" select="key('Process',$procid)"/>
<xsl:value-of select="concat($proc/@catalogueId,'/',$curProc/@revision,' - ',$curProc/@name)"/>
</td>
</tr>
<tr><!-- main table:row6::sub level -->
<td>
<hr color="#000000"/>
<table class="sample">
<tr>
<th>Name</th>
</tr>
<xsl:call-template name="createCL">
<xsl:with-param name="chStr" select="$occStr"/>
</xsl:call-template>
</table>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>
<xsl:template name="createCL">
<xsl:param name="chStr"/>
<xsl:variable name="genele" select="key('ProcessOccurrence',$chStr)"/>
<xsl:if test="name($genele)='ProcessOccurrence'">
<xsl:call-template name="creCLext">
<xsl:with-param name="genel" select="$genele"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<xsl:template name="creCLext">
<xsl:param name="genel"/>
<xsl:variable name="procid" select="substring-after($genel/@instancedRef,'#')"/>
<xsl:variable name="procele" select="key('ProcOpRevision',$procid)"/>
<xsl:variable name="pre1" select="substring-after($genel/@predecessorRefs,'#')"/>
<xsl:variable name="pre2" select="key('ProcessOccurrence',$pre1)"/>
<xsl:variable name="preid" select="substring-after($pre2/@instancedRef,'#')"/>
<xsl:variable name="prele" select="/plm:PLMXML/*[@id=$preid]"/>
<tr>
<td align="center"><a>
<xsl:attribute name="href">
<xsl:value-of select="concat($procid,'.html')"/>
</xsl:attribute>
<xsl:value-of select="$procele/@name"/>
</a></td>
</tr>
<xsl:result-document href="file:/{$outDir}/{$procid}.html">
<xsl:call-template name="genopr">
<xsl:with-param name="curOpr" select="$procele"/>
<xsl:with-param name="genel" select="$genel"/>
</xsl:call-template>
</xsl:result-document>
</xsl:template>
<xsl:template name="genopr">
<xsl:param name="curOpr"/>
<xsl:param name="genel"/>
<html>
<head>
<title>Operation: <xsl:value-of select="$curOpr/@name"/></title>
</head>
<body BGCOLOR="#FFFFFF" link="#0000FF" vlink="#660066">
<br/>
<table class="sample"><!-- main table -->
<xsl:call-template name="heading">
<xsl:with-param name="title" select="'Operation Report'"/>
</xsl:call-template>
<tr>
<td>
<xsl:variable name="procid">
<xsl:call-template name="cleanId">
<xsl:with-param name="id" select="$curOpr/@masterRef"/>
</xsl:call-template>
</xsl:variable>
<xsl:variable name="proc" select="key('Process',$procid)"/>
<xsl:value-of select="concat($proc/@catalogueId,'/',$curOpr/@revision,' - ',$curOpr/@name)"/>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>
<xsl:template name="heading">
<xsl:param name="title"/>
<tr><!-- main table:row1::heading-->
<th>
<div align="left">
</div>
<div align="center"><b><font size="+2"><xsl:value-of select="$title"/></font></b></div><br/>
</th>
</tr>
</xsl:template>
<xsl:template name="cleanId">
<xsl:param name="id"/>
<xsl:choose>
<xsl:when test="contains($id, '#')">
<xsl:value-of select="substring-after($id,'#')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$id"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
Below is Java code
ProfessionalTransformerFactory tFactory = new ProfessionalTransformerFactory();
Configuration saxonConfig = tFactory.getConfiguration();
JavaExtensionLibrary javaLib = new JavaExtensionLibrary( (ProfessionalConfiguration) saxonConfig );
javaLib.declareJavaClass( "http://com.teamcenter.rac.cme.cmereport/CMEReportXalanExtension",
CMEReportXalanExtension.class );
( (ProfessionalConfiguration) saxonConfig ).setExtensionBinder( "java", javaLib );
XslImportResolver myResolve = new XslImportResolver();
tFactory.setURIResolver( myResolve );
javax.xml.transform.Transformer transformer = tFactory.newTransformer
(new javax.xml.transform.stream.StreamSource(xslLocation));
// Add debugging output if it is definded in the Registry.
Registry registry = Registry.getRegistry( this );
CMEReportXalanDebug.addDebugMode(registry,transformer);
// 3. Use the Transformer to perform the transformation and send the
// the output to a Result object.
transformer.transform( new StreamSource( xmlLocation ),
new StreamResult( new FileOutputStream( htmlLocation ) ) );
And I am getting below error
net.sf.saxon.s9api.SaxonApiException: Errors were reported during stylesheet compilation at net.sf.saxon.s9api.XsltCompilerpile(XsltCompiler.java:862) at net.sf.saxon.jaxp.SaxonTransformerFactory.newTemplates(SaxonTransformerFactory.java:154) at net.sf.saxon.jaxp.SaxonTransformerFactory.newTransformer(SaxonTransformerFactory.java:110) at com.teamcenter.rac.cme.cmereport.CMEReportProcessing.applyStylesheet(CMEReportProcessing.java:276) at com.teamcenter.rac.cme.cmereport.CMEReportPanel.applyXSL(CMEReportPanel.java:578) at com.teamcenter.rac.cme.cmereport.CMEReportOperations.generateReport(CMEReportOperations.java:107) at com.teamcenter.rac.cme.cmereport.CMEReportOperations.executeOperation(CMEReportOperations.java:593) at com.teamcenter.rac.aif.AbstractAIFOperation.runEx(Unknown Source) at com.teamcenter.rac.kernel.services.impl.TCOperationService.performOperation(Unknown Source) at com.teamcenter.rac.aif.kernel.AbstractAIFSession.performOperation(Unknown Source) at com.teamcenter.rac.aif.AbstractAIFOperation.run(Unknown Source) at .eclipse.core.internal.jobs.Worker.run(Worker.java:63) Caused by: net.sf.saxon.trans.XPathException: Errors were reported during stylesheet compilation at net.sf.saxon.style.StylesheetModule.loadStylesheet(StylesheetModule.java:262) at net.sf.saxon.style.CompilationpileSingletonPackage(Compilation.java:101) at net.sf.saxon.s9api.XsltCompilerpile(XsltCompiler.java:859) ... 11 more
Share Improve this question edited Apr 2 at 8:51 Michael Kay 164k11 gold badges96 silver badges173 bronze badges asked Apr 2 at 4:01 ashish sharmaashish sharma 155 bronze badges1 Answer
Reset to default 1You're seeing the exception message that tells you errors were reported, but you're not showing (and therefore probably not seeing) the actual errors. You don't appear to be setting your own error listener, so by default the errors are going to Java's standard error output, which (depending on how you are running the Java application -- Eclipse, TeamCenter?) might be going to some log file somewhere.
I would try to fix that problem and then think about the actual errors. If necessary set an ErrorListener on the TransformerFactory and direct the error messages to somewhere where you can see them.
Your Java code appears to be calling JAXP interfaces with some Xalan extensions. Those aren't going to do anything useful when you're running Saxon, and it's possible they are doing harm, e.g. by redirecting standard error output.
It wouldn't surprise me if the error relates to the use of Java extension functions such as
setfile:getCurrentDir(setfile:new())
Be aware that the conventions for calling out to Java in Xalan are different from the conventions in Saxon.