Tagged Questions

Saxon is a XSLT and XQuery Processor

learn more… | top users | synonyms

6
votes
5answers
220 views

How to suppress indentation for XML output in XQuery

Is there a way from within an XQuery to remove indentation of the XML output? Eg. say I had an XQuery of; <foo><bar/></foo> producing an XML result document of; <foo> ...
4
votes
1answer
143 views

Saxon error with XSLT import statement

The Saxon processor gives me an error whenever I have an XSLT import statement. Here is the error: XTSE0165: I/O error reported by XML parser processing file: shared/test.xslt (The system cannot find ...
4
votes
1answer
3k views

Using SAXON Xpath engine in Java

Here is my code : public static void main(String[] args) { // System.setProperty( // "javax.xml.xpath.XPathFactory", // "net.sf.saxon.xpath.XPathFactoryImpl"); String ...
3
votes
3answers
94 views

Reading Environment Variables in an XSLT Stylesheet with Saxon

I'm trying to generate an XML file with the my machine's hostname in some arbitrary element or attribute, e.g. <hostname>myHostname</hostname> I'm using Saxon 9.2. I can think of three ...
3
votes
4answers
57 views

Moving files after failed validation (Java)

We are validating XML files and depending on the result of the validation we have to move the file into a different folder. When the XML is valid the validator returns a value and we can move the ...
3
votes
1answer
90 views

Output minimized tags from XSL transform using XSLT 2.0

I'm transforming an XML document with mimimized br tags like this: <br/> I'm using Saxon 9, and outputting as XHTML <xsl:output method="xhtml" indent="yes" ...
3
votes
2answers
212 views

How to check if xml textnode has Chinese characters with RegEx in a XSLT

On this website http://gskinner.com/RegExr/ (which is a RegEx test website) this regex match works Match: [^\x00-\xff] Sample Text: test123 或元件数据不可用 But if I have this input XML: <?xml ...
3
votes
4answers
237 views

Custom format for <xsl:number>

Is it possible to define a custom format for <xsl:number>? I have the case where a standard alpha-based format is desired, but certain characters in the alphabet are forbidden (strange ...
3
votes
1answer
407 views

Ant XSLT task with fileset running out of memory/not freeing up memory

I have a big (1.9 GB) XML file which has data I want to insert into a MySQL database every month. I have made an Ant script for this. The Ant XSLT task can't handle one file this big, so I have a ...
3
votes
4answers
221 views

XSLT: moving a grouping html elements into section levels

I'm trying to write an XSLT that organizes an HTML file into different section levels depending on the header level. Here is my input: <html> <head> <title></title> ...
3
votes
2answers
281 views

How to simplify this xproc pipeline?

I've just started digging into XProc (using Calabash). I have a series of XSLT transformations I want to apply to a single input document to produce a single output document. I was previously using ...
3
votes
3answers
391 views

Saxon XSLT 2.0 and RFC 822 date format

What is the right way to format xs:dateTime to RFC 822?
3
votes
1answer
239 views

Sorting a subtree and storing it in an xsl:variable

I'm working with an XSL stylesheet, and I'm trying to use the method shown here to store a sorted subtree as a variable. I'm using saxon 8.7 vis the xml-maven-plugin to transform my XML file. Here's ...
3
votes
1answer
549 views

Improving the performance of XSL

I am using the below XSL 2.0 code to find the ids of the text nodes that contains the list of indices that i give as input. the code works perfectly but in terms for performance it is taking a long ...
3
votes
6answers
4k views

How to execute XSLT 2.0 with ant?

I'm trying to run an XSLT transformation from an ant file. I'm using a XSLT 2.0 stylesheet with a saxon 9 parser (supporting XSLT 2.0). The problem is that it seems that ant is always calling an ...
3
votes
2answers
461 views

Getting The XML Data Inside Custom XPath function

Is there a way to get the current xml data when we make our own custom XPath function (see here). I know you have access to an XPathContext but is this enough? Example: Our XML: <foo> ...
2
votes
0answers
48 views

Is 'java:class' a standard use of XSL namespaces?

I have been trying to internationalise some XSLT and getting it to use properties files. I have gotten to the point where I think I have code that should work but I'm getting an error that I've found ...
2
votes
2answers
64 views

XSLT 2.0 transformation via linux shell

I want to perform an XSLT 2.0 transformation by the use of command line executions. I heard that i could use the Saxon library by a shell command like java -jar sax.jar -input foo.xml -xsl foo.xsl ...
2
votes
1answer
41 views

Is possible to make URIResolver.resolver() be called more than once? I need to add multiple documentFragments

I need to make a XSLT transformation using multiple sources to result an one XML file. For example: I have a XML Message to transform, a XSL file to make the transform, and a document fragment ...
2
votes
3answers
54 views

Generic way to apply an XSL to all files in a directory?

I have an XSL that transforms an XML file into a HTML file. Works great. But I would like to apply to a directory of files. Ideally a new HTML file for each XML file would be plunked down in the same ...
2
votes
1answer
150 views

Filepath to xml within xlsx in c#

I'm doing an xslt transform of the xml within an excel file using Saxon where the transform is being done on the .rels xml file within the xlsx file. I currently have a workaround in place where I ...
2
votes
1answer
173 views

How to use the “about:” protocol of HTML5 in XSLT processors

The HTML5 draft specifies (at the moment at least), that the URI about:legacy-compat can be used for documents, that rely on an XML conforming doctype (which <!DOCTYPE html> isn't). So I happen ...
2
votes
1answer
174 views

how to pass arugments to saxon xquery in windows powershell?

I'm having trouble passing arguments to xquery in powershell. Works fine in cygwin. What's the way to do this? @edit: Here's an example of how I've been doing this in bash, where 'xquery' is my ...
2
votes
0answers
153 views

Ant XSLT 2.0 with saxon9 BUILD FAILED

Update: Sorry, this was all my fault. I was not using resolve-uri() correctly and apparently it was making a difference in the context I was running it vs in oXygen. My build is still really slow for ...
2
votes
2answers
368 views

Improve XSLT transformation

I have a lot of xml (JUnit test results) that i want to transform with Xslt 2.0. I am currently using the net.sf.saxon.TransformerFactoryImpl to perform the transform and the fn:collection() in my ...
2
votes
3answers
407 views

XPath query: How to refer to the 'current node' (Java/Saxon)

I'm using a Java application based on Saxon for the XPath parser. Please consider the following: <import> <record ref="abc"> <id>123</id> ...
2
votes
2answers
168 views

XSLT 1.1 nodeset

I have this... <xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exslt="http://exslt.org/common"> <xsl:variable name="data"> <root> ...
2
votes
3answers
2k 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 ...
2
votes
2answers
581 views

XSLT 2.0 PHP support. When?

What are the chances to see XSLT 2.0 processors like saxon for php in the nearest future?
2
votes
1answer
308 views

Lauching a Java app from a batch file with the correct JRE

I have a very simple batch file that lauches a Java app (Saxon) with the simple command "java net.sf.Saxon.transform..." This app requires java version 1.5. This batch file will be used by 400+ ...
2
votes
1answer
3k 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 ...
1
vote
1answer
28 views

Possible to process XHTML with Saxon?

I can use xmllint and process HTML/XHTML input with XPath 1.0. For example: xmllint --xpath "//title" --html http://www.w3.org/TR/xslt20/ 2>/dev/null outputs expected, but with Saxon: java -cp ...
1
vote
2answers
33 views

How to use Saxon XPath processor w/o coding in Java

I guess I could make some XSL stylesheet, then use it as a template with parameter option to evaluate XPath expression with Saxon XSLT processor on command line, like: <xsl:template match="/"> ...
1
vote
2answers
22 views

How can I pass a parameter to my xslt stylesheet with Saxon under Java?

I am using Saxon 9 HE and in NetBeans 7.0.1, I get the following error when I try to send a parameter to my stylesheet: Just to make sure, is that the good way to send a parameter so I can get it ...
1
vote
2answers
43 views

Why do I get different output running xslt?

I am doing a very simple xslt for a source node like: <p> <media type="photo" id="lr002662" rights="licensed"> <title>Logging in Canada</title> ...
1
vote
1answer
50 views

Longest duration that can be specified with xsd:dayTimeDuration()

I have a simple question: what is the longest / "infinite" duration that can be specified using xsd:dayTimeDuration() (in the ISO8601 format)? Thanks, M.
1
vote
2answers
79 views

saxon distinct-values throws exception

I am trying to run a "distinct-values" XPath using Saxon. Here is my code: @Test public void testAttributeSelect() throws XPathFactoryConfigurationException { ...
1
vote
3answers
76 views

How to move out the dynamic result-document into the separate included or imported xsl file

I have a bunch of xsl files. I want to control an indent of result document centrally. I use now the code below in every xsl file. I have an xsl:template name="data" template in each file, but the ...
1
vote
4answers
89 views

Java/Saxon: Running an XSL function programmatically

I have an XSL defining several functions. I want to write Java code that takes the name of an XSL function (and a List of arguments) and runs that function (and, of course, binds the arguments to the ...
1
vote
0answers
55 views

org.xml.sax.SAXException: Parser configuration problem:

I am stuck with this error org.xml.sax.SAXException: Parser configuration problem: namespace reporting is not enabled at ...
1
vote
1answer
109 views

XSD Validation using Saxon API

I am trying to test Xsd Validation using Saxon. When I get to the actual validation, only the first error is caught because validator.Run() throws an exception when it gets to the first error, and ...
1
vote
1answer
40 views

xQuery and Saxon. For each value of the parameter a new tag

I got the following sample xml: <meci> <nodes> <node id="x"> <mlfbs> <region value="H"> <mlfblist> <mlfb partno="1" ...
1
vote
1answer
113 views

How to call Java API from Ruby 1.8 or 1.9

I've this JRuby working code (stolen from Keith's Blog), which wraps the SAXON xslt processor API. Now, I wonder whether I can and how can I wrap the same API in Ruby framework? Please tell me ...
1
vote
1answer
67 views

Can a function defined by xsl:function substitute for an xpath 3.0 inline function?

I was playing with this example in the xpath 3.0 spec: fn:fold-left(function($a, $b) { $a + $b }, 0, 1 to 5) I tried to substitute the inline function with a function defined by xsl:function. ...
1
vote
1answer
135 views

Need help with using Saxon-B(version 9.1.0.8) with Java 1.4.2

I need to transform one XML document into another using XSLT (for now from command line). I have to use Java 1.4.2. Based on that someone recommended using Saxon and provided the XSLT. It seems ...
1
vote
2answers
106 views

Can I do XSL transformation without explicitly provided XSL file?

I am using Transformer to perform XSL transformation from XML to XHTML: import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; import ...
1
vote
2answers
75 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
1answer
130 views

How do XQuery function namespaces work?

EDIT I want to group together related functions to show that they are related. If I have local:f1() and local:f2() then I could just change their names to local:menu-f1() and local:menu-f2() but is ...
1
vote
1answer
110 views

What is the most advantage using Saxon for .net?

I'm working in .net 4.0 C# xslt1.0. I hesitate to migrate with saxon processor is there real différencies in performance?
1
vote
1answer
52 views

Trying to simulate the XQuery function fn:idref() but without a schema

I want to search an XML document for the element that has an idrefs attribute containing a specific id. For example, given this XML document doc.xml; <doc> <x1 idrefs="foo bar"> ...

1 2 3 4