1
vote
4answers
80 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 …
1
vote
2answers
56 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?
0
votes
1answer
37 views
Replacement for saxon:if and saxon:before functions in xslt 2.0
Is there any replacement for saxon:if
and saxon:before functions in XSLT 2.0 / XPath 2.0?
I have code like this:
<xsl:variable name="stop"
…
0
votes
1answer
328 views
XSLT: change namespace in transformer, not in in stylesheet / remove namespace prefix
I am transforming some XML using XSLT and Saxon like this:
Source sourceXML = new StreamSource(...);
Source sourceXSLT = new StreamSource(...);
…
0
votes
2answers
201 views
Handling special characters in XML when transforming with Saxon
I'm attempting to apply a stylesheet to an XML document using Saxon. Given an XML file that was generated in Microsoft Word and that has Microsoft Word-style quotes, such as around FOO in the …
0
votes
3answers
382 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 …
0
votes
1answer
330 views
Using XSLT to output multiple files
I'm trying to get an example that I found for using XSLT 2.0 to output multiple files working.
Using Saxon B 9.7.0.1 with Java 1.6, I get this error:
C:\Documents and …
1
vote
3answers
558 views
How to get the unparsed entity attribute’s value from XSLT?
I have a problem with XSLT and unparsed entity in XML. Here is a fictional scenario. First I got an XML file named doc.xml:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE …
0
votes
2answers
247 views
XSLT Append to Result Document
Hi,
I have an XSLT script that I use for code generation where I process multiple input XML files, and output the files to Javascript code. For each xml input file, I output one Javascript file.
…
0
votes
1answer
82 views
Saxon in ASP.Net website
Hi,
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 …
0
votes
1answer
177 views
Saxon XMLBeans Tomcat
We recently updated our Tomcat web service. The only things we really updated were that we updated XMLBeans to version 2.4 and Saxon to version 9.
Running it Netbeans and eclipse, our project now …
3
votes
1answer
558 views
Using SAXON Xpath engine in Java
Hi all.
Here is my code :
public static void main(String[] args) {
// System.setProperty(
// "javax.xml.xpath.XPathFactory",
// "net.sf.saxon.xpath.XPathFactoryImpl");
String …
0
votes
1answer
29 views
create droplet app. to transform xml with xslt
I want to create a application, where you drop a xml doc on it, and an xslt transformation occurs using saxon as the transform engine. The result is a text file.
I am doing this on a mac. Does anyone …
1
vote
1answer
314 views
SAXON.NET XSLT 2.0 Processor
I am using the open source Saxon XSLT processor for .NET to execute some 2.0 transforms.
I reference the saxon9api.dll as I would any other dll, and can compile code against this. However Visual …
1
vote
1answer
187 views
Saxon 8 (Java version) problem
I'll point out now, that I'm new to using saxon, and I've tried following the docs and examples in the package, but I'm just not having luck with this problem.
Basically, I'm trying to do some xml …
