Saxon is a XSLT and XQuery Processor

learn more… | top users | synonyms

0
votes
1answer
19 views

Error in loading XSL files and DTD files in XSLT transformation

I am trying to create HTML files using XSLT, I have used xml file and xsl files to create HTML file. Here some other xsl files which are located in same location are included in xsl file by using ...
0
votes
2answers
63 views

How to use Saxon(XSLT 2.0 processor) in eclipse indigo with JAVA

I have to use XSLT 2.0 processor for string manipulation functions like replace(). I have added the dependency for saxon in POM file and ran "mvn install" command. By doing this "saxon-9.1.0.8.jar" is ...
2
votes
4answers
3k views

Difficulty getting Saxon into XQuery mode instead of XSLT

I'm having difficulty getting XQuery to work. I downloaded Saxon-HE 9.2. It seems to only want to work with XSLT. When I type: java -jar saxon9he.jar I get back usage information for XSLT. When I ...
1
vote
3answers
102 views

Saxon 9 XSLT transformer vs Xalan 2.7

I am currently using Xalan 2.7.0 for XSLT transformations over XML, but thinking over to switch to Saxon 9 version for XSLT transformations. So could someone list me the major cons and prons of using ...
0
votes
2answers
72 views

XSLT Encoding Issue

I have the following XML: <item> <description><![CDATA[Euro sign: €]]></description> </item> When I run it against this XSL: <xsl:stylesheet version="2.0" ...
0
votes
1answer
33 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
14 views

Is it possible to use sql-connect in the open-source version of Saxon XSLT?

I am trying to use the sql-connect statement of Saxon to access a data-mapping that is saved in my database to perform an XML transformation. I read in the boook "XSLT" by Doug Tidwell (page 334), ...
3
votes
1answer
1k views

XSLT: CSV (or Flat File, or Plain Text) to XML

I am trying to convert plain text files to XML files using XSLT. I started with CSV files, because that is a well-known file format that I could start Googling examples on. I stumbled onto this: ...
0
votes
1answer
22 views

How do I change the XSLT provider for Spring MVC (i.e. Plug in Saxon 9.x)?

I've done a google but can't see anyone talking about a solution. Is there a proper way of plugging in Saxon so that Spring MVC uses it for its XSLT views instead of whatever comes with the JDK, ...
2
votes
0answers
55 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. ...
0
votes
1answer
23 views

Getting at net.sf.saxon.dotnet.DotNetPullProvider.next() Error in C# with Saxon

I am Using Saxon-9EE for XSLT2.0 transformation in C#(Visual studio 2012). but some times getting below error while loading source document(xml size have 25MB). i tried same code for other ...
1
vote
2answers
60 views

TransformerFactoryConfigurationError when trying to use Saxon with a web service

My web service, living on Axis2 inside a WSO2 WSAS application server, contains the following code: String prop = "javax.xml.transform.TransformerFactory"; String val = ...
1
vote
1answer
60 views

Load xml and xslt from embedded resource in Saxon 9.4he

I am using Saxon 9.4 home edition (Saxon-HE 9.4 .NET) to get support for XSLT 2.0 and XPath 2.0, and XQuery 1.0 in .NET. My code crashes when I load files without an URI. Is it possible to load ...
0
votes
1answer
16 views

Using a parameter passed into xslt stylesheet

I am using Saxon to perform a transformation of an XML document in my .NET application. I am passing in a parameter to my xslt document but I have no idea how to use it in my template. Here is what ...
0
votes
2answers
49 views

How to preserve all whitespace in an attribute using xquery?

I need to preserve all whitespace in an attribute, as in <img src="images/some image.jpg"/> All the whitespace are significant to find the image. I use the saxon processor to parse the ...
1
vote
1answer
626 views

JSF 2.0 and TransformerFactory

I'm going to use Saxon-B 9 in my JSF 2.0 project. But after adding dependency to Saxon & Saxon-dom exceptions began to appear at startup: Sep 25, 2010 6:05:45 PM ...
0
votes
2answers
75 views

Can XSLT execute a shell script at the OS level?

I have a production flow that combines XSLT and some shell scripts in about 4 steps before it reaches completion. I execute each step manually at the moment. I'm using Saxon 9 from the command line ...
0
votes
1answer
40 views

Extract only the values using XQueryCompiler in Java

I am using the following code to get some results from a XML file which is stored in a string. But the xquerycompiler demands that I enclose them into the <result></result>. Can I not ...
1
vote
1answer
95 views

Running TestNG test case from ANT giving DomSource cannot be proccesed?

I have an ant task which runs testNG testCase.But while running it is showing error like below one [testng] Error [testng] DOMSource cannot be processed: check that saxon8-dom.jar is on the ...
0
votes
2answers
26 views

How to add string function to XPath in Saxon?

I want to create function which will find a word in a string like word(@class, 'items') which will be equals to fn:matches(@class, "(^|\s)items(\s|$)")
0
votes
1answer
58 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
26 views

Selecting the last element in the whole document with XSLT

I want to select the last node matching a particular pattern anywhere in the document. I was trying something like <xsl:stylesheet version="2.0" ...
1
vote
2answers
125 views

How do I run an XQuery against XML in a String?

I have a String representation of some XML, and I want to run an XQuery on it in memory. I've been playing with Saxon and came up with a solution, but to make it work I did an ugly, ugly thing. I have ...
4
votes
2answers
811 views

How can I format a decimal in xquery?

I'm trying to format decimals in XQuery. The decimals are currency, so the format should be ,###.##. For example: 5573652.23 should be 5,573,652.23 and 352769 should be 352,769 (or 352,769.00 if ...
2
votes
1answer
309 views

Ant XSLT 2.0 with saxon9 BUILD FAILED

I have gotten this Ant script to work for XSLT 1.0 using the standard transform engine. However, I want to use XSLT 2.0 as well and I am running into a brick wall. I have included the Saxon Jar and ...
0
votes
1answer
78 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(), ...
-2
votes
1answer
41 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 ...
0
votes
1answer
35 views

Using Saxon-B or purchasing Saxon-PE/EE?

We have found the limitations of Saxon-HE (see table) at the point of using Extensibility using reflexion and EXSLT extension function. We are evaluating to purchase few licenses for the servers and ...
0
votes
1answer
44 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
41 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
62 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>. ...
1
vote
3answers
74 views

How do I preserve type information across an <xsl:if> statement?

I'm using Saxon 9.4 and XSLT 2.0 I have the following code snippet in my stylesheet :- <xsl:template name="some_template"> <xsl:param name="some_param" as="xs:integer?"/> ...
0
votes
1answer
42 views

could not find main class in Saxon Xquery

java -cp saxon9he.jar net.sf.saxon.Query only yields the following message: could not find main class net.sf.saxon.Query I have read in other threads that this is the proper command for XQuery ...
0
votes
1answer
230 views

How to fix SXXP0003: Error reported by XML parser: The prefix “dt” for attribute “dt:dt” associated with an element type “CNDB” is not bound

I found some files that generate error messages and now I would like to fix the errors. How do I fix the error below? If I do mediainfo --Output=XML 7483.MOV >data.xml then I edit the file and ...
0
votes
0answers
68 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 ...
1
vote
2answers
77 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 ...
5
votes
1answer
4k views

dynamically concatenating xml files with ant and xslt

Question We have a large number of xml configuration files that we want merged into one master version at build time. Smaller config files are easier to maintain and one large file loads faster so I ...
0
votes
1answer
198 views

Why is this an XPath invalid query expression with Xmllint yet valid with Saxon?

I'm trying to learn XPath query using command line tools in Linux (I'm taking Stanford's Class2Go course Introduction to Databases). Given an XML file called BookstoreQ.xml of a Bookstore that ...
0
votes
3answers
93 views

How do I test if a parameter has been passed into a template in XSLT v 2.0?

I'm currently trying to upgrade from XSLT 1.0 to XSLT 2.0. I had the following in one of my templates that used to work with XSLT 1.0 :- <xsl:template name="some_t"> <xsl:param ...
2
votes
1answer
58 views

Best practices for server-side architecture for an XSLT-based client application

I'm considering using Saxon CE for a web application to edit ebooks (metadata and content). It seems like a good match given that important ebook components (such as content.opf) are natively XML. I ...
0
votes
2answers
172 views

Syntax colouring with Ditac (XML Mind Dita Converter)

Is there a way to perform syntax colouring using Ditac (the DITA converter by XML Mind)? Any XSLT1 or XSLT2 based solution would work provided that it supports both XHTML and XSL:FO output. XSLTHL ...
0
votes
1answer
173 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 ...
1
vote
0answers
191 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 ...
0
votes
1answer
86 views

Saxon-ce with multiple user input controls

I am making controls on a web page (comboboxes) with Saxon-CE and Xslt 2.0. I am having trouble in passing the values of multiple control to a template that uses the values from that control to ...
0
votes
2answers
256 views

XSLT change/override attribute on copy-of not applied (using saxon )

I have a xslt like this: <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet xmlns:db="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ...
1
vote
3answers
800 views

XSLT 2.0 produces error: “the context item is undefined”

We use Altova Stylevision which produces XSLT 2.0 files. We use Saxon 9 for Java to execute these XSLT files. This has been working well for a few years, alas none of us actually understand XSLT. Now ...
0
votes
1answer
59 views

Saxon-ce getting combobox option value

I am using Saxon-CE and XSLT 2.0 to generate and manipulate controls on a page. Generating the a combobox is not problem, but I cannot seem to get the value from the combobox's option entries when I ...
0
votes
0answers
50 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 ...
2
votes
1answer
221 views

Saxon 9.4 Query from cygwin

I am in the folder : /cygdrive/d/ragsxq where I have kept some simple X-Query stmts to be executed via Saxon X-Query engine...(Saxon 9.4 HE ) The following statement : $ java -classpath ...
1
vote
2answers
199 views

How to use saxon built-in catalog feature

I downloaded SaxonHE9-4-0-6J and want to process XHTML on CLI. However Saxon tries to load DTD from W3C and it takes too much time for every simple command. I have xml catalog, which I use ...

1 2 3 4 5 7