Saxon is an XSLT 2.0 and XQuery 1.0 Processor (and also an XML Schema processor) available on Java and .NET, in open source and commercial editions. The Saxon-CE version will run in any browser.
1
vote
2answers
91 views
Making multiple files from multiple files with one command in gnu make
Assume 1000 files with extension .xhtml are in directory input, and that a certain subset of those files (with output paths in $(FILES), say) need to be transformed via xslt to files with the same ...
1
vote
2answers
197 views
xsl for function iteration introducing unwanted spaces
I'm generating an xml output using a base 'super' xml file and a reference xml file to list the parts of the super-file that I need.
The problem is the for function. When I use it to iterate over a ...
1
vote
2answers
220 views
Template matching multiple output files
I have an XSL document that outputs to html. I want to run a batch process, using a filelist.xml to perform this transform on multiple XML input documents, with corresponding html output files, as ...
0
votes
2answers
17 views
Saxon XPATH 2.0— working correctly?
I've got a simple XML file for testing:
<?xml version="1.0" encoding="UTF-8"?>
<A>
<B >1</B>
<B >2</B>
<B >3</B>
<B >2</B>
...
0
votes
2answers
37 views
how to extract an XPATH from an html page with Saxon-PE commandline
I would like to extract the XPATH //DIV[@id="ps-content"] out from this web page: http://www.amazon.com/dp/1449319432 (saved as a local file)
I would like to do it with a single line of command-line ...
2
votes
1answer
114 views
how to switch jasper reports from xalan to saxon?
We use jasperreports 4.1.1 in our project and it works fine but recently we've decided to switch to xslt 2.0 and the first thing i did - i changed xalan (which doesn't have xslt 2.0 implementation) to ...
2
votes
1answer
292 views
Relative file path being applied from project directory instead of original directory
My program reads in a document from a location that is not the project root directory. The doc contains a relative path. When the program applies that path, it does start from the project's root ...
1
vote
1answer
16 views
Strange behavior of Document createCDATASection method with Saxon (Maven Saxon-HE artifact 9.4)
I tried to use Saxon in place of JDK's default implementation (Xalan I guess) for XML transformation and Xpath. In my code I am creating a CDATA node using document.createCDATASection(data) method. ...
1
vote
1answer
165 views
Saxon stops working after installing batik-rasterizer
Could someone please help me with the following problem?
Yesterday I was trying to add a process to my ANT script (Windows XP, ANT version 1.8.2, mostly XSLT 2.0, Saxon 9 simply added to my ant/lib) ...
1
vote
1answer
177 views
Any way to do a reverse XPath query?
If I have a context node, an XPath expression and a node, is there a way to check if my node satisfies the XPath expression in that context.
I have XPath queries that are very expensive and long to ...
1
vote
1answer
99 views
Process external files over HTTPS inside XSLT2
I use the unparsed-text function to analyse external files in XSLT. This works well for HTTP-Urls. But when trying to load via HTTPS it fails. First I tried to put the credentials inside the URL, ...
1
vote
1answer
226 views
How to get NodeSet for evaluate() method of XPathExpression - for saxon 9.3 lib
i am using saxon lib 9.3 for XPath evluation
following code returns List of TinyElementImpl instances -
XPathEvaluator evaluator = new XPathEvaluator();
XPathExpression exp = ...
0
votes
1answer
21 views
Saxon/Javax Transform from multiple XML Files/Strings
This code is in Java and uses Saxon
I am implementing a transform function to transform xml and several secondary xml sources
All of the inputs are not files, so I cannot use document() or other ...
0
votes
1answer
41 views
How to create a folder during xslt transformation with Saxon in which to copy binary data afterwards
I'm currently in the process of writing an XSLT Stylesheet that will handle the transformation of DOCX Documents to (X)HTML files.
Given the fact images are either included (in the /word/media ...
0
votes
1answer
84 views
Running saxon xquery from Java program using net.sf.saxon.Query
I am using Saxon 9.0.4 and included the Home Edition jar in my Eclipse project. But whenever I am issuing the query string, nothing is happening and I am not getting any output. When I am using the ...
0
votes
1answer
114 views
Read remote csv file in xsl
I'm trying to convert a csv file into a xml file with Saxon 9.
But I have a problem when I try to check existence and read a csv file with the xslt functions:
unparsed-text-available(),
...
0
votes
1answer
58 views
How do I change saxon's standard error output stream in Java?
I'm using saxon9 to perform XSL transforms in Java. If there is an error during the transform, saxon9 directs the output to the standard error stream of the JVM in which it is running. My Java ...
0
votes
1answer
66 views
How to convert a Java object to String using Saxon
I am facing a problem with Xalon while converting Java object to String, i.e empty open close tags are converted to self closing tags. eg. <span></span> gets converted to </span>.
...
0
votes
1answer
46 views
Chaining Saxon XsltTransformer output into FOP
I need to pipe the output of several XSL transformations into a FopFactory object, but I can't figure out how to code this. I have the piping working, but the last step is a mystery.
DOMResult ...
0
votes
1answer
203 views
Saxon-ce dynamic xpath evaluation
I am trying to evaluate a dynamic xpath using ixsl:eval() in Saxon-ce with xslt 2.0 but does not seem to be working. Here is the illustrative XML
<things>
<thing>
<name>widget ...
0
votes
1answer
132 views
I'm receiving JDBC Connection Failure: org.sqlite.JDBC Is it my code or an incompatibility between saxon-b and sqlitejdbc-v056.jar?
I hope somebody can answer this. I'm using saxon-b and sqlitejdbc-v056.jar and it won't connect to a database local to my machine. I've tried changing the database path around, as well as other ...
0
votes
1answer
96 views
How can I feed an Xquery module with a global variable from main script?
Currently I am feeding the name of 2 databases to my main xql file through an external variable. I would like to pass these values to any of my XQL modules.
For example, I could have a main script ...
0
votes
1answer
62 views
Can I tell saxon to figure out the XSLT version on its own?
I have to run an XSLT 2.0 stylesheet with saxonb-xslt (which warns about 1.0 stylesheets) and an XSLT 1.0 stylesheet with saxon-xslt (which wont work on 2.0 stylesheets). Is there a way to tell saxon: ...
0
votes
1answer
54 views
How to get column names with Saxon EE SQL Extension
Saxon EE XSLT processor has great SQL Extension. It allows to get results from SQL database right into XSLT. However, I am not able to get table column names into XML. Instead it just uses XML like
...
0
votes
1answer
77 views
Redirecting output from trace() function used in XPath queries
I'm using Saxon Home Edition dlls for evaluation of XPath expressions.
Is there a way to redirect output from trace() function to another window/message box that I specify?
I'm creating a new ...
0
votes
1answer
95 views
XQuery and Server Sides Includes
How can I instruct XQuery to copy these SSI directives (HTML comments) from an XQuery file (.xq) to the output html file.
<!--#set var="tab4" value="true" -->
<!--#include ...
0
votes
1answer
138 views
Howto speed up the Saxon doc() function?
I have a 12mb XML file which I am accessing from within an xquery. The file is loaded something like this;
let $t := doc('file:///C:/foo/bar/file12mb.xml')
The code is taking about 950ms to ...
0
votes
1answer
66 views
Saxon descending order
To get elements in ascending order with saxon we write this...
saxon:sort(sale, saxon:expression('@price * @qty'))
How to get the elements in descending order?
Thank you in advance.
Décio Maigret ...
0
votes
1answer
140 views
Saxon Xslt Processor Error
In my .net application i am trying process an xml using saxon xslt, the xslt version is 2.0.
When the data is large i am getting the following error.
[net.sf.saxon.trans.XPathException] = ...
0
votes
1answer
1k views
Saxon Unexpected token “ < e o f >”
I am evaluating Stylus Studio mainly for xquery development against XML payload exchanged using SOAP.
I've inherited a complex xquery (about 1800 lines) and when I try to execute it using Saxon as ...
0
votes
1answer
72 views
create droplet app. to transform xml with xslt
I want to create a application, where you drop a xml doc on it, and an xslt transformation occurs using saxon as the transform engine. The result is a text file.
I am doing this on a mac. Does anyone ...
-2
votes
1answer
46 views
Class NamePool uses lot of Java heap
We are running XML parsers in Tomcat and I believe this is resulting in a gradual build up of objects of class net.sf.saxon.om.NamePool$NameEntry. I have attached the top few lines of jmap -histo ...
-2
votes
1answer
546 views
Invalid factory configuration javax.xml.transform.TransformerConfigurationException: Failed to compile stylesheet
When i use the combination of XSLT 1.0 and saxon9he.jar for my xml to pdf conversion using xslt and xsl-fo, i am getting the exception that Invalid factory configuration
...
2
votes
0answers
70 views
How to capture the output of XSLT's xsl:message in Mule
I've an XSLT to transform XML in Mule 3.3.0 application. I've to stop processing and throw an error if data is not in conformance to requirements. I am using beloe code to achieve that.
...
1
vote
0answers
231 views
What I need to Query mysql database from xsl using Saxon java tool (command line)?
I want to query database using java tool SAXON
Use an ODBC connection to connect to mysql database
Query database ( probably information schema -read schema )
Export the results into xml
Is ...
1
vote
0answers
2k views
XSLT: change namespace in transformer, not in in stylesheet / remove namespace prefix
I am transforming some XML using XSLT and Saxon like this:
Source sourceXML = new StreamSource(...);
Source sourceXSLT = new StreamSource(...);
...
1
vote
0answers
2k views
SAXON.NET XSLT 2.0 Processor
I am using the open source Saxon XSLT processor for .NET to execute some 2.0 transforms.
I reference the saxon9api.dll as I would any other dll, and can compile code against this. However Visual ...
0
votes
0answers
35 views
Saxon-HE 9.5 and getGlobalParameters
Since some day ago, using Saxon HE 9.4.0.7 I used successfully the method "getGlobalParameters" of the class "XsltExecutable". The task is to get the parameters of an XSLT file.
When turned to Saxon ...
0
votes
0answers
74 views
XSLT reading external documents using document() or doc()
I'm attempting to add some new functionality to an XSLT so that when certain conditions exist I need to call out and read data from other external XML documents. I have tried using both the XSLT ...
0
votes
0answers
58 views
Saxon issue with Norwegian characters
Using Saxon to process a xml file: http://meltwaternews.com/magenta/xml/html/18/2/rss/v2_406837.rss2.XML which includes some Norwegian characters like Æ, Ø, Å.
xml encoding is utf-8
However, error ...
0
votes
0answers
130 views
Issue with Saxon and Xalan in my WebApp when defining a SOAP connector using Spring
I am trying to add a SOAP Web Service to an existing application and am having a large amount of trouble due to Saxon / Xalan conflicts. When my Web Application starts I always get the error:
...
0
votes
0answers
228 views
switching from Xalan to Saxon
Getting error while saxon parser parsing saxon:evaluate function.
This exception I am getting:
XPST0003: Static error in XPath expression supplied to saxon:evaluate: Unexpected token
...
0
votes
0answers
144 views
XSL HTML output based on content
I need help with the following task:
I already export an Excel-Spreadsheet via VB to XML and within the
same macro I call the XSLT-Processor Saxon via command line to take my xsl-file
and create ...
0
votes
0answers
128 views
Extension functions and classpaths
I am aware that this is a rather long and detailed post. I would have made it shorter and simpler if I could. I'd be grateful for any advice or ideas.
Background
I am writing XSLT to transfer data ...
0
votes
0answers
309 views
How to transform DocBook XML into PDF in JavaHelp format
I have used the below command to generate Doc book xml to html in java help format.I have used SAXON as a XSLT processor
java com.icl.saxon.StyleSheet example.xml ...
0
votes
0answers
219 views
Saxon9he RTF issue
Sorry if this is answered. I've searched around, but couldn't find solution.
I have XSLT 2.0 report templates, created with Altova StyleVision 2011r3. From Java application there must be generation of ...
0
votes
0answers
514 views
Xalan dyn:evaluate problem
I am using XSLT to transform an XML document.
Here is an example of the XML:
<feed xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:esb="http://ice.exploration.nasa.gov/esb/results" ...
0
votes
0answers
1k views
Saxon and character encoding: experiences and errors
Recently I ran some tests on xslt transformations with Saxon. My main focus was file encoding and character sets. But I was interested also in impact of different Saxon versions and Java VM x86 vs. ...
0
votes
0answers
313 views
XSLT 2.0 replace function behaves wrong
The XSLT 2.0 template
<xsl:template match="/">
<xsl:value-of select="replace('aba', 'a', 'b')" />
</xsl:template>
is expected to return 'bbb', which it does correctly when ...
0
votes
0answers
486 views
Set saxon DocumentBuilderFactoryImpl features using javax.xml interface
Here what I have.
System.setProperty(
"javax.xml.parsers.DocumentBuilderFactory",
"net.sf.saxon.dom.DocumentBuilderFactoryImpl");
DocumentBuilderFactory factory = ...
