Saxon is a XSLT and XQuery Processor

learn more… | top users | synonyms

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
2answers
96 views

Keep CDATA for xstl tranformation?

I'm doing a xstl transformation with saxon from an XML document. The doc is not standard-valid XML, and I want to preserve all <![CDATA[< elements that are found in there. However using the ...
3
votes
2answers
181 views

Validating XML doc results in “Invalid byte 1 of 1-byte UTF-8 sequence.”

I'm validating some XML files against Schematron stylesheets by using Probatron4j, which uses Saxon internally. Most of the time, this works fine, but occasionally, processing crashes with the error ...
0
votes
1answer
144 views

How to import an xquery module using Saxon

I am having some troubles running an Xquery with Saxon9HE, which has a reference to an external module. I would like Saxon to resolve the module with a relative path rather absolute. the module ...
1
vote
2answers
95 views

Safest way to extract all variable refs from xpath expression in java

I'm using java and saxon processor. Let say I have some XPath expression with possible variable refs in it. I also have some custom xpath functions which can be nested to arbitrary depth which can ...
0
votes
1answer
131 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
350 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
89 views

NullPointerException in saxon IdentityTransformer.transform when extracting data from javax DOMSource

I am using Spring Webservice (2.1.0) Client to send a very simple Message to a Soap UI Mock Webservice. (Hello World style, no namespaces) Before Sending the DOMSource via the ...
0
votes
1answer
640 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 ...
0
votes
1answer
56 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
990 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
124 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' ...
0
votes
1answer
54 views

Use of Orbeon CE to drive log file analysis (Saxon)

I am a Orbeon newby. I have a suite of XQuery scripts the execution of which I want to automate. Orbeon looks like a potential solution to implement the process that I have outlined below. Basically I ...
0
votes
1answer
240 views

XQuery fn:deep-equal - comparing text from XPath with string literal

I'm trying to use XQuery function fn:deep-equal to compare sections of XML documents and I'm getting unexpected behaviour. When comparing XPath value with string literal, function returns false. For ...
0
votes
2answers
139 views

Implementing HTML DOM rewriting logic on the server

My application does massive rewriting of the DOM on the client side at load time. It traverses the page scanning for special markup (think Markdown) or other patterns, replacing them with sometimes ...
1
vote
0answers
240 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
235 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 ...
0
votes
3answers
452 views

Use of 'following-sibling' in XQuery function to return TIME element if a specific pattern is matched

I am attempting to write a function in XQuery that returns me a timestamp from an XML data sequence if a specific pattern of values is detected. The data is actually a test log of a system's api ...
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 ...
0
votes
0answers
126 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: ...
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
98 views

What to use? Integrate a front end Web App with XQuery/Saxon as the platform?

As a relative newbie to XQuery and Saxon I have inherited a few hundred XQuery modules that analyse automated regression test result files. There is one .txt test result file per test case. There is ...
1
vote
3answers
152 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
165 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 ...
0
votes
2answers
195 views

Basic web application using Saxon API and IKVM throws exception

I created a basic .NET 4.0 application and referenced the Saxon assemblies. Here is the list of dll's I referenced in the project. saxon9.dll saxon9api.dll IKVM.OpenJDK.ClassLibrary.dll ...
-1
votes
1answer
264 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 ...
1
vote
2answers
131 views

Transformation with Saxon 6.5.5 and XLST does not work correctly

I want to transform this xml: <?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" ...
1
vote
2answers
90 views

XQuery: how to sequentially find occurrence of expected data (similar to state machine)

Good day, firstly thank you for reading my XQuery question. I need to implement a function in XQuery to sequentially detect items in a data structure. As I am new to XQuery I am still finding some ...
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 ...
0
votes
1answer
48 views

xquery newbie-how to add support for the custom Xquery functions at xqueryfunctions.com, to my java app

Excuse me if my question sounds silly-- I am new to XQuery as well as the saxon xquery library-- I am working on a java app that should also have xquery support-- for this purpose the java saxon ...
0
votes
1answer
156 views

SAXON XSLT error

I have the following test code that tries to convert a cvs file to xml. The problem I have is that sometimes it will run and other times it fails with the following error: The specified node cannot ...
2
votes
4answers
63 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
274 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
2answers
142 views

removing an element from xml using saxon xquery

Hi I have an xml like this: <ns1:books><ns2:book category="WEB"><ns3:title lang="en">Learning XML</ns3:title> <ns3:author>Erik T. ...
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
88 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 ...
0
votes
2answers
159 views

Saxon XQuery processor

I am new to using saxon. Can I ask an expert in using Saxon for processing XQuery to point out some details about What is good about Saxon ? and how is it different from other XQuery processors? ...
0
votes
1answer
122 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
61 views

how to select an element from a json array using xslt?

How can I select each element in a json array individually using xslt? JSON: "data":{"array":["item1", "item2", item3"]} I tried //data/array and I get all of the values combined into one result ...
0
votes
1answer
80 views

INSERT queries in Saxon api

Does Saxon xqj api support issuing insert queries? If No, Is there any academic article discussing this? and what alternative should be used? If Yes, is there any code example for doing so? Any ...
0
votes
1answer
92 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
2answers
412 views

Saxon: Cannot call static method expecting String with xs:string parameter from XSLT

I am trying to call a static Java method from my XSLT stylesheet: <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ...
0
votes
2answers
685 views

Insert element into XML using XQuery and Java

I need to insert a new element into an XML document using XQuery insert expression. I am using saxon as a java api. I am new to XQuery so I am not sure about the exact structure of the insert ...

1 2 3 4 5 7