Xalan is an open source XSLT 1.0 processor with implementations in Java and C++.
9
votes
1answer
410 views
Is it possible to call a Java extension function from Xalan on Android?
docx4j uses Xalan to convert docx to HTML, and relies heavily on Xalan Java extensions to do the work.
But Xalan extensions don't work for me on Android (working with 4.0.3). LogCat says:
05-14 ...
6
votes
2answers
6k views
How to use a parameter in a xslt as a XPath?
I'd like to add an element to a xml document and I'd like to pass as a parameter the path to the element.
sample.xml file:
<?xml version="1.0"?>
<stuff>
<element1>
...
6
votes
2answers
3k views
Java/XSLT: Cannot find a matching 1-argument function
I get the following error:
javax.servlet.ServletException: Cannot find a matching 1-argument function named {http://exslt.org/dynamic}evaluate()
at ...
5
votes
4answers
7k views
NAMESPACE_ERR: An attempt is made to create or change an object in a way which is incorrect with regard to namespaces
Trying to retrieve the SOAP body from an SOAP response, but getting this error
"NAMESPACE_ERR: An attempt is made to create or change an object in a way which is incorrect with regard to namespaces."
...
5
votes
3answers
329 views
JAXP XSLT document() function problem
I am working under java application which uses XSLT transformation. I have a lot of document() calls in it, so it is possible to have java.lang.OutOfMemory exception (which I actually have), because ...
5
votes
2answers
415 views
XSLT document() : Is it slower when calling it multiple times?
I have searched for quite a while and didn't find concrete answers to my simple question:
Which approach is faster or is the compiler "smart" enough so that both variants are the same?
Note: I am ...
5
votes
2answers
3k views
java.io.IOException: Server returned HTTP response code: 503 for URL: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
In the following code:
private Document transformDoc(Source source) throws TransformerException, IOException {
TransformerFactory factory = TransformerFactory.newInstance();
Transformer ...
5
votes
3answers
1k views
XSLT with Xalan vs. STX with Joost
Where can I find performance metrics (memory/time) for a non-trivial example of using XSLT (with Xalan) compared to using STX (with Joost)
4
votes
4answers
167 views
How to avoid O(n^2) complexity when grouping records in XSLT?
I'm frequently running into performance issues when I XSL transform large amounts of data into HTML. This data is usually just a couple of very large tables of roughly this form:
<table>
...
4
votes
1answer
3k views
Default support for xinclude in Java 6?
I see in my application that xinclude inside my parsed XML file does not work within my Java XSLT conversion.
However, although I do:
DocumentBuilderFactory factory = ...
4
votes
2answers
2k views
Ant <junitreport> fail because of Xalan's (XSLT) secure processing feature
My junit tests run via ant 1.7 from within my Eclipse environment but the build failes when the junitreport task is performed:
BUILD FAILED
.../build.xml:222: Errors while applying ...
3
votes
5answers
1k views
jUnit testing with exception expectations (multiple asserts)
I'm testing a WeekConverter for xalan use and wondering what is my test exactly doing. :D
Having the following test method:
@Test(expected = IllegalArgumentException.class)
public void ...
3
votes
2answers
369 views
ISO-8859-1 characters treated as UTF-8 in XSLT attributes
The ¬ character (0xAC in ISO-8859-1) works for normal text if I ensure that ISO-8859-1 is always used as the encoding throughout. However, when using it in attributes it is escaped to: %C2%AC. I ...
3
votes
4answers
2k views
how can I tell xalan NOT to validate XML retreived using the “document” function?
Yesterday Oracle decided to take down java.sun.com for a while. This screwed things up for me because xalan tried to validate some XML but couldn't retrieve the properties.dtd.
I'm using xalan 2.7.1 ...
3
votes
4answers
1k views
Search XML files with xalan in Java
I need to write a java application that does a keyword search within the tags and the actual data from many xml files. From my research online I get the feeling i have to use xalan, but I can't figure ...
3
votes
2answers
348 views
Incremental/streaming XSLT transformations?
I'm normally using the XSLT support in the JDK (JDK 7) for XSLT transformations. Recently I've come across a rather large XML document, and applying XSLT transformations to this (even very basic ones) ...
3
votes
2answers
733 views
Xalan XSLT - Out of Memory Heap Space
My project has a reporting module that gathers data from the database in the form of XML and runs an XSLT on it to generate the user's desired format of report. Options at this point are HTML and CSV.
...
3
votes
2answers
876 views
Using Xalan alongside Saxon
I use Xalan in my application, but need to use Saxon with a reference implementation to generate test output to compare with. I want to use them both during unit tests.
However, as soon as I add an ...
3
votes
1answer
535 views
How can I reference an XSD off the CLASSPATH for validating my XML?
As part of my XML transform (using XSL), I'm creating an attribute for the schema location so the the result of the transform can be validated. However, as I'm trying to run this as a self-contained ...
3
votes
1answer
660 views
How to override jar inside of Jboss 5.1 lib/endorsed directory?
We need to have the newest version of the Xalan/Serialize/Xerces jar files run inside our ear. The version inside of Jboss's 5.1 lib/endorsed directory are being loaded first when we run our ...
2
votes
2answers
4k views
Get first child node in XSLT using local-name()
Assume we have this simple xml ...
<books>
<book>
<author/>
<title/>
</book>
<book>
<author/>
<title/>
...
2
votes
4answers
3k views
String functions missing in Xalan 2.7, java.lang.String used instead?
I am using Xalan 2.7.0 (as bundled with Apache FOP 1.0) and have problems when using string functions.
The line <xsl:value-of select="fn:replace('test', 't', '*')"/> results in this exception:
...
2
votes
2answers
101 views
Using a different HTML template for the same XSL stylesheet
Is it possible to use a different HTML layout for the same XSLT stylesheet?
I have been reading up on XSLT and most examples i see show that the HTML code is actually embedded within the stylesheet. ...
2
votes
1answer
198 views
Preserving whitespaces from the XSL stylesheet
I'm trying to convert this XML :-
<list>
<unit>
<data1>a</data1>
<data2>b</data2>
<data3>c</data3>
</unit>
</list>
to ...
2
votes
2answers
569 views
Get current nodes xpath
I need to get the xpath of current node for which i have written an xsl function
<func:function name="fn:getXpath">
<xsl:variable name="xpath">
<xsl:for-each ...
2
votes
2answers
3k views
How to prevent xalan.jar that has META-INF\services\javax.xml.transform.TransformerFactory from taking over JDK 1.6 built in Xalan implementation?
Consider this code (based entirely on flying saucer's "getting started" code, their rights reserved):
package flyingsaucerpdf;
import java.io.File;
import java.io.FileOutputStream;
import ...
2
votes
2answers
643 views
XSLT: XPath context and document()
I have an XSLT like this:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
...
2
votes
3answers
610 views
Why is Apache Xerces/Xalan adding additional carriage returns to my serialized output?
I'm using Apache Xerces 2.11.0 and Apache Xalan 2.7.1 and I'm having problems with additional carriage return characters in the serialized XML.
I have this (pseudo) code:
String myString = ...;
...
2
votes
1answer
344 views
syntax highlighting in docbook
I use xalan-j_2_7_1 and docbook-xsl-1.76.1 to generate documentation. I saw in hibernate documentation, that they use syntax highlighting in there code. How can i do it in my doc?
2
votes
2answers
2k views
Leave entity intact in XML + XSLT
I transform XML to (sort of) HTML with XSL stylesheets (using Apache Xalan). In XML there can be entities like —, which must be left as is. In beginning of XML file I have a doctype which ...
2
votes
1answer
48 views
Need custom order in flat file from XML using XSLT
I want to create a flat file from an xml using xslt with this output in the order as shown:
NM1*CC*1*Smith*John****34*999999999~
N3*100 Main Street~
From this XML:
<Claim>
<Claimant
...
2
votes
1answer
272 views
Unexpected behavior of xsl:apply-templates/xsl:with-param with Xalan-J and saxon compared to xsltproc
I'm trying my best to learn how to use XSLT 1.0 from java code but am starting to loose my mind bit by bit slowly over time.
I have Xalan-J (both xalan.jar and xsltc.jar with all dependency jars), ...
2
votes
2answers
263 views
Which XSLT profiler should I use?
I'm in the market for an XSLT profiler.
I'm using the Xalan-j XSLT processor from Apache.
I'd like to be able to run the profiler under Windows or Linux as we have different teams using the same ...
2
votes
1answer
229 views
Unable to create XSLT extension in Javascript or Jython with Ant
I am using Ant 1.8 to run some XSLTs on documents in a folder. Ant uses Xalan to process the XSLT. The jobs run ok, I get a bunch of transformed output files corresponding to the input ones.
The ...
2
votes
1answer
154 views
Caching fetches of Java XSLT processor (Xalan) for document()
I'm using the XSLT processor in JDK 1.6 (Xalan) and I make extensive use of the document() function to retrieve data items from documents downloaded from the web. This processing is done as part of ...
2
votes
1answer
521 views
Spring - web pages using XSLT
I'm new in XSLT and I would know what is the best solution to integrate XSLT into Spring web application. I found quick example here, but all in all I had troubles with proper character encoding and ...
2
votes
2answers
3k 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 ...
2
votes
1answer
109 views
Does Spring webservice support Java7?
We are in the process of upgrading Java version from 1.6 to 1.7 for our Java EE system.
We extensively use spring webservice (1.5.8 in the server side and 2.0.4 in client side).
Initial testing (with ...
2
votes
1answer
174 views
How to disable DTD validation in XSL function 'document()' (xalan-j)
XSL:
<?xml version='1.0' encoding='utf-8' ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:htm="http://www.w3.org/1999/xhtml" version="1.0">
<xsl:template ...
2
votes
1answer
108 views
how to switch jasper reports from xalan to saxon?
We use jasperreports 4.1.1 in our project and it works fine but recently we've decided to switch to xslt 2.0 and the first thing i did - i changed xalan (which doesn't have xslt 2.0 implementation) to ...
2
votes
0answers
157 views
How to tell Xalan to escape characters in HTML attributes
The result of the Java code below is
<input value="<http://example.org/>">
What I want is
<input value="<http://example.org/>">
The code is
Document doc = ...
2
votes
2answers
657 views
Xerces and Xalan-C for windows
Would like to port Xerces and Xalan to latest Microsofy Visual Studio (2010).
For Xerces, all I have to do is download from site Xcerces version 3.1.1.
But it is not preintegrated with Xalan-C. only ...
2
votes
6answers
524 views
how to select an element within a specific namespace?
I'm having trouble selecting elements that are part of an specific namespace. My xpath expression works in XMLSpy but fails when using the Xalan libraries..
<item>
<media:content ...
1
vote
4answers
6k views
How do I make xsl transformation indent the output?
I'm using xalan with the following xsl header:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns:redirect="http://xml.apache.org/xalan/redirect"
...
1
vote
2answers
904 views
Xalan (XSLT) translate method translating more than it should
I seem to be having an issue with Xalan's translate method.
I have the following code:
translate(translate(string(name),'<sup>',''),'</sup>','')
This is used to remove ...
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 ...
1
vote
2answers
630 views
XSLT processing recursion depth
First of let me state that I have no clue of XSLT at all. I was given a task to investigate some JVM dumps of a Java OutOfMemory exception that occurred during XSLT processing.
I have found that the ...
1
vote
1answer
1k views
AbstractMethodError on org.apache.xalan.processor.TransformerFactoryImpl
With the following code:
private Document transformDoc(Source source) throws TransformerException, IOException {
TransformerFactory factory = TransformerFactory.newInstance();
...
1
vote
1answer
630 views
xslt error: Extra illegal tokens: 'eq', ''center'' when transforming my xml via xsl/xslt via xalan/java
i am trying to transform my xml via java/xalan (2.7.1) with org.apache.xalan.xslt.Process class
I am getting "Extra illegal tokens" and not sure of the work around
i basically want to pass in a ...
1
vote
3answers
307 views
Setting current node for XPath evaluation
Given a node list and a current node within that list, is there a way to use javax.xml.xpath (or org.apache.xpath perhaps) to evaluate position dependent XPath expressions, for example:
...
