XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Show tree view Topic
Topic Page 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Go to previous topicPrev TopicGo to next topicNext Topic
Postnext
Kurt WaldSubject: Problem with Saxon 9.4.0.4 AVT as element name
Author: Kurt Wald
Date: 24 Jul 2012 01:05 PM
trying to use an AVT for an element name throws exceptions with Saxon 9.4.0.4 bundeled with Stylus Studio X14 R2 Enterprise.

Something like:

<xsl:call-template name="ftx-satxt">
<xsl:with-param name="satzart" select="'X220'"/>
<xsl:with-param name="text" select="'abc'"/>
<xsl:with-param name="pos" select="1"/>
</xsl:call-template>

<xsl:template name="ftx-satxt">
<xsl:param name="satzart" as="xs:string"/>
<xsl:param name="text" as="xs:string"/>
<xsl:param name="pos" select="1"/>
<xsl:element name="{$satzart}"/>
</xsl:template>

produces:

java.lang.IllegalArgumentException: Unknown name code -1
at net.sf.saxon.om.NamePool.unknownNameCode(NamePool.java:693)
at net.sf.saxon.om.NamePool.getURI(NamePool.java:496)
at com.stylusstudio.debugger.saxon.CharacterMapEmitter.startContent(CharacterMapEmitter.java:427)
at net.sf.saxon.event.NamespaceReducer.startContent(NamespaceReducer.java:192)
at net.sf.saxon.event.ComplexContentOutputter.startContent(ComplexContentOutputter.java:583)
at net.sf.saxon.event.ComplexContentOutputter.endElement(ComplexContentOutputter.java:451)
at CE_ftx_satxt_32422425.process(file:///d:/XML/STYLUS%7E1/OBOBET%7E1/ORDERS%7E3/obo_xutils.xsl:168)
at com.saxonica.bytecode.CompiledExpression.process(CompiledExpression.java:60)
at net.sf.saxon.expr.instruct.Template.expand(Template.java:233)
at CE__Slash__14820075.process(file:///d:/XML/STYLUS%7E1/OBOBET%7E1/ORDERS%7E3/ORDERS%7E1.XSL:126)
at com.saxonica.bytecode.CompiledExpression.process(CompiledExpression.java:60)
at net.sf.saxon.expr.instruct.Block.processLeavingTail(Block.java:617)
at net.sf.saxon.expr.instruct.Instruction.process(Instruction.java:131)
at net.sf.saxon.expr.LetExpression.process(LetExpression.java:436)
at net.sf.saxon.expr.instruct.TraceExpression.processLeavingTail(TraceExpression.java:294)
at net.sf.saxon.expr.instruct.Instruction.process(Instruction.java:131)
at net.sf.saxon.expr.LetExpression.process(LetExpression.java:436)
at net.sf.saxon.expr.instruct.TraceExpression.processLeavingTail(TraceExpression.java:294)
at net.sf.saxon.expr.instruct.Block.processLeavingTail(Block.java:615)
at net.sf.saxon.expr.instruct.Instruction.process(Instruction.java:131)
at net.sf.saxon.expr.instruct.ElementCreator.processLeavingTail(ElementCreator.java:301)
at net.sf.saxon.expr.instruct.ElementCreator.processLeavingTail(ElementCreator.java:254)
at net.sf.saxon.expr.instruct.Instruction.process(Instruction.java:131)
at net.sf.saxon.expr.instruct.TraceExpression.processLeavingTail(TraceExpression.java:294)
at net.sf.saxon.expr.instruct.Instruction.process(Instruction.java:131)
at net.sf.saxon.expr.instruct.ForEach.processLeavingTail(ForEach.java:450)
at net.sf.saxon.expr.instruct.Instruction.process(Instruction.java:131)
at net.sf.saxon.expr.LetExpression.process(LetExpression.java:436)
at net.sf.saxon.expr.instruct.TraceExpression.processLeavingTail(TraceExpression.java:294)
at net.sf.saxon.expr.instruct.Instruction.process(Instruction.java:131)
at net.sf.saxon.expr.instruct.ElementCreator.processLeavingTail(ElementCreator.java:301)
at net.sf.saxon.expr.instruct.ElementCreator.processLeavingTail(ElementCreator.java:254)
at net.sf.saxon.expr.instruct.Instruction.process(Instruction.java:131)
at net.sf.saxon.expr.instruct.TraceExpression.processLeavingTail(TraceExpression.java:294)
at net.sf.saxon.expr.instruct.Instruction.process(Instruction.java:131)
at net.sf.saxon.expr.instruct.TraceExpression.processLeavingTail(TraceExpression.java:294)
at net.sf.saxon.expr.instruct.Template.applyLeavingTail(Template.java:212)
at net.sf.saxon.trans.Mode.applyTemplates(Mode.java:985)
at net.sf.saxon.Controller.transformDocument(Controller.java:1957)
at net.sf.saxon.Controller.transform(Controller.java:1803)
at com.exln.stylus.CSaxon8Driver.doProcessing(CSaxon8Driver.java:272)
at com.exln.stylus.CProcessorDriver.process(CProcessorDriver.java:104)
Unknown name code -1

With Saxon 9.3 bundeled with X14 this worked perfectly well.
itself says

"The latest version of Saxon is version 9.4, released on 9 December 2011. Version 9.3 remains available, and may be a safer option for the time being if you have no need for the new features offered by 9.4."

Can you solve this issue or make Saxon 9.3 available as an additional processor option in X14 R2?

Kurt Wald

Postnext
Ivan PedruzziSubject: Problem with Saxon 9.4.0.4 AVT as element name
Author: Ivan Pedruzzi
Date: 24 Jul 2012 02:31 PM
Thanks for reporting this.

We are investigating but we do not believe that Saxon 9.4 is at fault.

If you generate the Java code and run the transformation outside Stylus Studio it should run fine.

We will report when we have found a solution.

If you need to run in the IDE please fallback to X14.

Thanks
Ivan Pedruzzi
Stylus Studio Team

Postnext
Kurt WaldSubject: Problem with Saxon 9.4.0.4 AVT as element name
Author: Kurt Wald
Date: 24 Jul 2012 03:55 PM
Hi Ivan,

you are right. Running the snippet from the commandline (Saxon licensable features disabled) works without errors:

java -cp c:\progs\StylusX14\bin\saxonsa.jar net.sf.saxon.Transform -s:in.xml -xsl:test.xsl -o:out.xml

Kurt Wald

Postnext
Ivan PedruzziSubject: Problem with Saxon 9.4.0.4 AVT as element name
Author: Ivan Pedruzzi
Date: 26 Jul 2012 01:01 AM

Maintenance release 1893a should fix the problem.

Package available for download at
http://www.stylusstudio.com/update/X14_r2.html

Thanks for your help
Ivan Pedruzzi
Stylus Studio Team

Posttop
Ivan PedruzziSubject: Problem with Saxon 9.4.0.4 AVT as element name
Author: Ivan Pedruzzi
Date: 24 Aug 2012 08:56 PM
Hi Kurt,

Build 1893c ships Saxon 9.4.0.5 which provides a fix for the just-in-time XSLT compiler for this particular scenario.

Thanks for your help
Ivan Pedruzzi
Stylus Studio Team

 
Topic Page 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 Go to previous topicPrev TopicGo to next topicNext Topic
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.