0
votes
1answer
32 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 ...
1
vote
3answers
97 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
1answer
13 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), ...
2
votes
0answers
53 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
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" ...
1
vote
1answer
56 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
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" ...
0
votes
1answer
76 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
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 ...
1
vote
3answers
72 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
220 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 ...
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 ...
1
vote
0answers
189 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
2answers
244 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
2answers
318 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
204 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
169 views

Catch output stream of xsl result-document

I need a way to interfere in writting xsl result documents to avoid writting them to file system. Right now my template is writting to a temporary directory, and then i zip that directory. I want to ...
0
votes
1answer
95 views

Run compiled Saxon stylesheet using JAXP API

I have a compiled stylesheet that was created with this Saxon command: java net.sf.saxon.Compile [options] stylesheet output [ params…] I would now like to apply this stylesheet to an XML ...
0
votes
2answers
125 views

XSLT 2.0 sort using Saxon in Java

This is a follow up to XSLT sort edge case for ascending sort by element name I have managed to resolve most of the issues using the answer described in that question. However there is still a case ...
4
votes
2answers
82 views

Sanitizing user supplied XSLT

We have an application which uses XSLT to format XML data for display as XHTML. The system is able to cope with arbitrary XML schemas, so Schemas and XSLTs need to be uploaded by users of the ...
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
138 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
96 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
138 views

How to Debug Extended Functions in XSLT Using Saxon?

I have been reading through programming blogs about how to use Extended Functions with XSLT and Saxon, and can't seem to reference external Java functions in the XSLT successfully. I am getting the ...
1
vote
3answers
356 views

Pass xml document as parameter to xsl

I have read a lot of post and tried a lot of things but still can't get the xsl to find values in the parameter. I started with java's sun xalan and never got it working so I switched to saxon to no ...
0
votes
1answer
43 views

Skip java extension in XML, when it is not available

I have created Java extension xmlns:convert="java:com.package.GreateClass" This work, when com.package.GreateClass is in some classpath with XML processor. In other case I get compile error in ...
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
126 views

Saxon XSLT and NodeList as parameter

What I am trying to achieve is (using Saxon-B 9.1): 1) Run XSLT transformation with object of below Example class as parameter 2) Object's properties are populated using reflexive extension function ...
0
votes
1answer
57 views

Substring an element value whith &amp; in xsl

I'm trying to supstring a string value with xslt. <element><value>Value of element</value></element> <element><xsl:value-of ...
3
votes
3answers
1k views

Call Java instance methods in XSLT

I am using Saxon (I could use Xalan if necessary) XSLT processor to do some transforamtion. I want to pass the instance of below object to the XSLT template as parameter. public class Test { ...
0
votes
1answer
128 views

XPath, test last attribute value from list

I'm trying to test the last attribute value from this input XML. I'm using Saxon and XSLT 2.0 <history> <value date='2010-01-01' price='5.99'/> <value date='2010-01-02' ...
1
vote
0answers
242 views

Saxon 9 XSLT Transformation results in NaN [closed]

I want to transform this xml file: <?xml version="1.0" encoding="utf-8"?> <KNX xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ...
0
votes
1answer
236 views

Programmatically Saxon XSLT Transformation in Java/Android

Hi there I want to programmatically transform a xml with a xsl stylesheet in my Android application. This is my transformer function: //-----------------------------XLST SAXON ...
1
vote
2answers
44 views

how to avoid the spaces b/w the nodes/elements in saxon parser/xalon parser

I have input like following snippet, Input Snippet : <div class="a"> <table> <col width="4" /> <col width="8" /> <col width="5" /> ...
1
vote
1answer
121 views

Accessing Nodes from external XML with document() XSLT

I'm trying to iterate through a directory of SVGs to access some metadata within. I can iterate fine, however, when I attempt to get the value of a specific node within each I seem to fail. Using ...
1
vote
3answers
250 views

How to control Spring-WS namespace single or double quote with XSLT

I want to change the double quotes to single quotes for a single namespace declaration in my document, while leaving all other namespace declarations as double quotes. How can I do this? Here's the ...
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 ...
1
vote
3answers
154 views

XSLT grouping based on XML element values

My Input XML File looks like <test-message> <segment id="MSH"/> <segment id="SFT"/> <segment id="PID"/> <segment id="NTE"/> <segment ...
0
votes
1answer
167 views

What is the best way to Optimize XSLT tranformations?

I am using the code given below to XSLT transformations. I use Input and Output Streams for this transformation. Here xsltIn and xmlIn are input streams. I use the ...
-1
votes
1answer
272 views

Error: Could not find or load main class net.sf.saxon.Transform

Edit I am having an XSLT to convert my xml into html format(I dont know anything about XSLT, i am having which already written by someone). This is what i am doing in command line java -Xss2m ...
0
votes
1answer
38 views

does Saxon use whitespace in attribute during XSLT?

i want to know how and why Saxon uses whitespace in between XSL elements during XSLT. Here's an example that could be affected by the abovementioned behaviour: How and why Saxon uses whitespace in ...
2
votes
4answers
64 views

Creating a Map in XLST

<xsl:variable name="map"> <map> <item key="Name" value="John"/> <item key="Address" value="Un_Known"/> <item key="Phone" value="(878)876678"/> ...
2
votes
1answer
276 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 ...
0
votes
0answers
217 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
1answer
89 views

XML transformation with XSL

I want to transfer XML file to other XML with XSLT. I want to do transformation because XML file isn't pure tree-structured document. Here's my file before: <uglyStartTag></uglyStartTag> ...
0
votes
2answers
170 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 ...

1 2 3 4