Tagged Questions
0
votes
2answers
37 views
how to extract an XPATH from an html page with Saxon-PE commandline
I would like to extract the XPATH //DIV[@id="ps-content"] out from this web page: http://www.amazon.com/dp/1449319432 (saved as a local file)
I would like to do it with a single line of command-line ...
1
vote
1answer
38 views
Saxon CE and XQuery? Documentation indicates no XQuery, Examples otherwise?
Saxon CE, a javascript implementation of the popular XSLT, has documentation that indicates Saxon-CE has had XQuery support removed.
However, an example in the Saxon-CE documentation has was looks ...
0
votes
2answers
59 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 ...
0
votes
1answer
44 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 ...
0
votes
1answer
84 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 ...
1
vote
2answers
146 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 ...
0
votes
1answer
47 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 ...
1
vote
2answers
287 views
java- how to process large XML files using Saxon library
In an app I am working on, I have to process very large XML files (files as much as 2GB in size)...I want to run some XQuery commands against those files using the Saxon java library.
How do I do ...
0
votes
1answer
175 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 ...
0
votes
1answer
57 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
251 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
3answers
491 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 ...
0
votes
1answer
101 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
2answers
95 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
49 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
2answers
150 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
2answers
177 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
84 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
96 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
752 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 ...
0
votes
1answer
221 views
DataSource declaration in Saxon XQJ API
I need to write a program in order to implement XQuery in java using saxon. I am new to XQuery and saxon. I have downloaded saxon-xqj-8.9.0.4.jarand saxon9.jar and added both files to the classpath. ...
0
votes
2answers
955 views
XQuery Java Performance with Large XML file
I'm working on some Xquery code (using SAXON) to execute a simple XQuery file against a large XML file.
The XML file (located at this.referenceDataPath) has 3 million "row" nodes and has the form:
...
2
votes
1answer
236 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 ...
0
votes
1answer
302 views
“Install” - Saxon
I am trying to "install" Saxon for xquery documents.
So I set the Classpath var with the saxon9he.jar as file name and tried in the cmd saxon9he but nothing happened. So I tried to execute a xquery ...
0
votes
1answer
95 views
XQuery and Server Sides Includes
How can I instruct XQuery to copy these SSI directives (HTML comments) from an XQuery file (.xq) to the output html file.
<!--#set var="tab4" value="true" -->
<!--#include ...
0
votes
3answers
603 views
XQuery 3.0 and maps in Saxon
I would like to experiment with map features in Saxon (http://www.saxonica.com/documentation/expressions/xpath30maps.xml), but I am unable to get past query compilation. Maybe I am missing some ...
6
votes
4answers
612 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>
...
0
votes
1answer
138 views
Howto speed up the Saxon doc() function?
I have a 12mb XML file which I am accessing from within an xquery. The file is loaded something like this;
let $t := doc('file:///C:/foo/bar/file12mb.xml')
The code is taking about 950ms to ...
1
vote
1answer
135 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
730 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
117 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
vote
1answer
275 views
How to use the XQuery fn:idref() function?
I can't get the XQuery function fn:idref() to return anything.
I have this XML document doc.xml;
<doc>
<foo idref="xyz"/>
<bar xml:id="xyz"/>
</doc>
And this XQuery;
...
4
votes
2answers
838 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
463 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 ...
0
votes
1answer
142 views
C#: Looping Through a Directory Calling an External Process
I have the C# code below, used to input each file in a directory, run an XQuery process on it, and output each file as an XML file. The code calls the SAXON XQuery processor. Note: the code works now ...
1
vote
1answer
313 views
Error “System function unparsed-text#1 is not available with this host language”
I'm using Saxon to execute the following xquery;
fn:unparsed-text("text.txt")
But I'm getting the following error message;
javax.xml.xquery.XQException:
System function unparsed-text#1 is not ...
0
votes
5answers
1k views
How to load a text file from within an XQuery?
Is there an XQuery command to load a text file?
I can load an xml document by doing the following;
declare variable $text := doc("test.xml");
But it only seems to work if test.xml is a well-formed ...
0
votes
1answer
1k views
Saxon Unexpected token “ < e o f >”
I am evaluating Stylus Studio mainly for xquery development against XML payload exchanged using SOAP.
I've inherited a complex xquery (about 1800 lines) and when I try to execute it using Saxon as ...
0
votes
2answers
383 views
XQuery in the free version of Saxon
I'd like to know whether someone has any experience with XQuery as it is supported in the free version of Saxon. Can it generally be presumed to be complete and usable?
0
votes
3answers
886 views
Debugger for XQuery that uses Saxon
Can anyone suggest a debugger for XQuery? I would prefer one that is either online or works within Eclipse, and I prefer something that uses Saxon. So far, all I've found is XQDT (which has little ...
0
votes
1answer
902 views
how to set xquery context document in java using saxon 9.2he?
how do I execute this xquery
for $elem in /root/element()
return
$elem
on an xml file using java without using fn:doc?
i keep getting
XPDY0002: The context item for axis step ...
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 ...
0
votes
2answers
392 views
How to validate XQuery source file for XSD schema
I mean without input XML file.
I'm using Saxon-EE 9.2.
2
votes
4answers
686 views
Why would I choose XSLT or XQuery over the other for html document generation?
I was researching alternatives to using Microsoft's XslCompiledTransform and everything seemed to point towards Saxon primarily and secondly XQSharp. As I started to look at documentation for Saxon I ...
0
votes
2answers
373 views
Saxon in ASP.Net website
I want to use the Saxon-B XQuery class in my ASP.Net website. But my hosting-provider supports only applications in Medium trust level.
Does someone know if it's possible to use Saxon-B and IKVM.Net ...