Tagged Questions
0
votes
2answers
24 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
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
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, ...
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
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
3answers
94 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 ...
0
votes
1answer
174 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
88 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
1answer
60 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 ...
1
vote
2answers
331 views
Saxon error “XPTY0019: Required item type of first operand of '/' is node(); supplied value has item type xs:string”
I have an XSL program which in turn generates an XSL program, which depending on the input might look like this:
<xsl:variable name="patterns"/> <!--empty in this particular case-->
...
0
votes
2answers
208 views
Omit DOCTYPE declaration
I am using XSLT 2.0 to transform the XML files to XHTML. I am using saxon9 processor for conversion. While converting, I am getting an error like
java.io.FileNotFoundException: c:\test\book.dtd ...
2
votes
2answers
62 views
How do I selectively include elements from one or the other xml file based on the contents of a plain text file?
I have two source xml files and I need to construct a new xml file which contains elements chosen for one or other of the files depending on whether their 'name' is contained in a plain text file.
...
3
votes
1answer
141 views
Tail-recursive function in XSLT 2.0 is not working
I am trying to write a tail-recursive function in XSLT 2.0, which iterates through a multivalued variable of dates and returns the earliest one. For some reason my function is not recognized by ...
0
votes
1answer
98 views
XSL variable Xpath expression for boolean of two child elements in one select
What would be the exact XPath expression to set a variable this is in a for each of another element. So far I have variable below but I also need to know the amount is greater than 0 to stop further ...
0
votes
3answers
89 views
Xsl not finding value with correct XPath
I'm using saxon 9he, eclipse, tomcat 7. I'm going to paraphrase the code. When I run the transformation I get all the values I want in the for each except InsurerId. If I change (in debug) the xml to ...
0
votes
1answer
92 views
Insert NodeList into XSLT output
I am passing NodeList as a parameter to XSLT (Im using SaxonB 9.1/XSLT 2 if that makes any difference).
What I want to do is to insert all of the elements/values from the nodelist into the XSLT ...
0
votes
1answer
659 views
Error when runing XSLT with eclipse
When I use eclipse xsl development tools to run xsl transformation, it reports the following error. But using saxon there is no problem. SIt would be appreciated if some expert can provide possible ...
1
vote
2answers
81 views
Running a single stylesheet on multiple input documents and placing all their outputs in a single file
I am trying to run a single stylesheet on multiple input documents and have their corresponding outputs written to a single output file.
Has anyone done this in XSLT 1.0 or 2.0?
I also have multiple ...
0
votes
1answer
146 views
How to Read in multiple CSV files from an XSLT file and output a single XML file
I plan to use Saxon for an XSLT problem. I need to run my program on a schedule. When it runs it needs to select all CSV files from a directory. The number of files can be random but once processed ...
1
vote
1answer
155 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) ...
0
votes
1answer
201 views
XSLT grouping and leaving out duplicates
I have the following XML input file:
<mappings>
<mapping>
<key>6718</key>
<value attribute="content_type">Info Page</value>
...
0
votes
0answers
37 views
Saxon XSLT Processor retrieve output HTML, assign to XMLControl
I am using ASP.NET 4.0, with Saxon9 API. I need to transform a dynamic XML with an XSLT 2.0 stylesheet, and assign it to a server side XMLControl.
Is there a way this can be achieved?
Is it ...
1
vote
1answer
141 views
How do I merge and concatenate the data from each row in two separate source files?
I have two source files which I need to combine on a row by row basis. I am happy reading the files into a variable and I am happy with the logic but the syntax has me stumped. For each row in file 1 ...
0
votes
2answers
129 views
How should I test for an ampersand in a string?
I set a variable depending on the specific value of a field. Inside an <xsl:choose>, the following code works perfectly:
<xsl:when test="property_type='hotel'">47</xsl:when>
...
1
vote
3answers
801 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 ...
3
votes
2answers
895 views
XSLT with XPAth 2.0 and Java expressions
I would like to use XPath 2.0, more specifically the distinct-values function. I downloaded the Saxon Home Edition because it can do XPath 2.0 and XSLT 2.0 but now it moans about not being able to ...
0
votes
1answer
345 views
base-uri not returning uri of source document
For some reason, base-uri() is not returning the uri of the source file when I run an XSLT (using XSLT2, Saxon 9.4 PE).
Here is my xslt test case
<xsl:stylesheet version="2.0"
...
2
votes
1answer
214 views
Counting XML based on date conditionals with xslt
I'm working with xslt for the first time. I have 2.0, but that's about the only advantage I have access to with the c# transform library we have. I'm trying to count a number of child nodes in the XML ...
2
votes
2answers
562 views
XSLT 2.0: Find missing elements in a sequence
I need to search for a range of elements based on ID numbers. If the ID number is found, I'll process it. If the ID is not found, it'll get filled in with a default value. I'm using XSLT 2.0 in ...
2
votes
1answer
504 views
Returning QNames from user-defined function
I am trying to transform a WSDL definition into another format for further processing, but I ran into a problem. I can't seem to return QName-values from a function, without them being turned into a ...
2
votes
1answer
89 views
validate a binary files presence with schematron
Id like to use schematron to validate that a file specified in the test document is actually present. The document and file will always reside in the same directory. e.g.:
<foo icon="bar.png" ...
2
votes
2answers
383 views
Why does index-of() return multiple values when applied to a sequence of unique nodes?
I'm using xpath2's index-of value to return the index of current() within a sorted sequence of nodes. Using SAXON, the sorted sequence of nodes are unique, yet index-of returns a sequence of two ...
0
votes
1answer
476 views
How to specify an inline javascript in xsl to be run in saxon
I have an xslt transformation that works fine when run in Altova XML Spy, but errors in saxon9he.jar.
See below for the code snippets and the saxon error message.
What has to be done differently for ...
0
votes
2answers
130 views
different behavior of <xsl:number level=“any”> between Saxon 8.7 and 9.1
Does anyone know the reason why the following piece of XSLT prints "1" under saxon 8.7 and "2" under 9.1.0.8?
<xsl:variable name="count1">
<xsl:variable name="tmp1"><x ...
0
votes
1answer
294 views
Why xsl:result-document fails inside <xsl:attribute> instruction?
I'm using Saxon-EE 9.3.0.4 for xsl transformations and found that when <xsl:result-document> is used inside <xsl:attribute> (as well as <xsl:namespace>, ...
1
vote
3answers
240 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 ...
0
votes
1answer
64 views
XSLT2: How to set the value of a variable in a udf requiring a path-call
I'm trying to use a user-defined function in XSLT that repeatedly calls the value of a certain string. That string is based on the outcome of an XPath expression that doesn't change within the span of ...
0
votes
1answer
402 views
xsl: Store multiple items in a variable or param for later use
I need to transform an xml to some custom xml format.
In the new format i would have many sections node and for each node i am creating a unique id using:
<xsl:attribute name="identifier">
...
0
votes
1answer
1k views
Getting detailed error description from Saxon 9.x in .net
I have an xslt2 transform engine setted up with saxon 9.x. I have some big xml file with large xsl transformation file. I can make the transform with XQSharp XSLT2 engine, but with saxon i am getting ...
0
votes
1answer
137 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] = ...
3
votes
1answer
316 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
521 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 ...
4
votes
4answers
779 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 ...
1
vote
1answer
723 views
Can an XSLT 2.0 function return arbitrary types?
I am trying to write an XSLT 2.0 function that returns a result of a specific type--let's say one or more elements. Here's what I've tried, to no avail:
<xsl:function name="util:find-parents2" ...
0
votes
2answers
644 views
Weird Error in XSLT 2.0 [SXXP0003]
I've been dealing with XSLT 2.0 in the past day, trying to parse a plain text file.
apparently I couldn't even get to the part where I actually get it working, at the moment, the xsl doesn't have to ...
0
votes
2answers
380 views
xslt 2.0 month name in French or German
I’m using xslt fn:formate-dateTime() to get the current date and time, for English it’s works fine.
But everytime I try to get the month name in different languages (fr, de, etc), I will just get ...
2
votes
1answer
310 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
2answers
63 views
xslt namspace related to copying some elements
So, I have a stylesheet that spends most of its time transforming elements from 'namespace a' to the xhtml namespace.
In one particular case, however, I want to allow the input vocabulary to include ...
2
votes
2answers
244 views
Sorting XML recursively - only the inner nodes are sorted
I need to sort an example XML in a way that all the ShippingPoints are sorted first, then the Cargos according their first ShippingPoint and finally the Transports according to the first ShippingPoint ...
1
vote
2answers
218 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 ...
