Tagged Questions
The xalan tag has no wiki summary.
5
votes
3answers
140 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
156 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
4answers
2k views
Java/XSLT Problem: Cannot find a matching 1-argument
I get the following error:
javax.servlet.ServletException: Cannot find a matching 1-argument function named {http://exslt.org/dynamic}evaluate()
at ...
4
votes
4answers
96 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>
...
3
votes
1answer
31 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
48 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
77 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
183 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
1answer
352 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
2answers
2k 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>
...
3
votes
4answers
746 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
1answer
2k 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 = ...
3
votes
3answers
766 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)
2
votes
2answers
51 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
1answer
134 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
165 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
1answer
387 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
2answers
847 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 ...
1
vote
1answer
37 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
2answers
58 views
In Xalan XSLT 1.0, how to pass a variable to a template match?
We are using Xalan XSLT 1.0 in Java and we want to pass a variable to a template match to avoid hard-coding element names in the XSL file. The style sheet compiles, but the date returned is wrong. Are ...
1
vote
3answers
110 views
How to do this in XSLT without incrementing variables? (Tweaking Xalan to create a global XSLT iterator. Do I have other options?)
I'm trying to think functional, in XSLT terms, as much as possible, but in this case, I really don't see how to do it without tweaking. I have roughly this data structure:
<transactions>
...
1
vote
1answer
55 views
How do I do a str:replace in XSLT/XPATH 1.0?
In XPATH 2.0 there is a function that allows me to replace a substring in a string with another string. I'd like to do this using xalan. Unfortunately, it doesn't support the EXSLT method ...
1
vote
1answer
85 views
Which XSLT Processor for C++?
I started off with Xalan for C++, but that really seemed like overkill for this project. I will have an XML file in memory, there is one stylesheet to run it through... and that's pretty much it.
The ...
1
vote
1answer
115 views
Getting an Eclipse C++ environment running with Xalan
I have been working on getting a C++ IDE going on my 64-bit Windows 7 machine. It's been frustrating, mostly because of the incompatibilities of 32 and 64 bit programs using Eclipse IDE for C/C++ ...
1
vote
0answers
424 views
com.sun.deploy.net.jarsigningexception could not verify signing in resource: xalan.jar, 2.7.1
Our JNLP client application contains different JAR's. We sign all these JAR's at build-process. Now, we have one Jar which can not be verified, but only under Windows! (xalan-2.7.1.jar)
If we run the ...
1
vote
3answers
323 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 ...
1
vote
1answer
353 views
How to use XSL functions with Xalan?
This is my XSL:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:r="my-own-namespace"
version="2.0" ...
1
vote
1answer
138 views
Problems with Xalan using XPATH (unclosed tags)
Greetings,
I'm facing a problem with the following tech-stack: JWebUnit -> HtmlUnit -> Xalan.
I'm trying to find an element by XPATH, but the HTML document is pretty malformed.
Xalan stops finding ...
1
vote
2answers
136 views
is TransformerFactoryImpl of Xalan is thread safe?
Is the class org.apache.xalan.processor.TransformerFactoryImpl thread safe? Or do I have to a keep local copy for each thread?
1
vote
2answers
314 views
xslt encoding special characters
I'm using Java with Xalan 2.7 to transform one XML to another.
Source is StreamSource(UTF-8 Reader);
Result is StreamResult(ByteArrayOutputStream)
Now my template is set to use UTF-8 (note the ...
1
vote
2answers
849 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 ...
1
vote
2answers
294 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
0answers
240 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 ...
1
vote
1answer
427 views
Reusing xalan transformer causing its extension functions break
I am using xalan 2.7.1 to validate my xml docs with xslt style sheet. It works fine for the first document and returns error message in case of error along with correct line and column number of xml ...
1
vote
2answers
607 views
Java script XSLT Error : For extension function, could not find method java.lang.String. ([ExpressionContext,] #STRING)
HI, I am using Xalan to parse my xsl file. The xsl is working properly in the vb.net parsers. But Xalan gives error for that xsl.
For extension function, could not find
method
...
1
vote
1answer
180 views
How to call xpath document() with resolvable base references
I have an xml file which contains the name of another xml file:
within my stylesheet, I detect @href and open the document via the document() function
document(@href)
should call my ...
1
vote
1answer
335 views
Capturing an exception from Xalan
I have a Java program (running in JDK 1.5 for now) which is getting a strange exception while processing an XSLT stylesheet using Xalan. I'm not looking for how to fix the exception: there's plenty of ...
1
vote
3answers
2k 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:
...
1
vote
2answers
171 views
Why can't I use values of nodes I retrieve by using exsl:node-set/set:distinct in an XPath-Expression?
In a xslt-stylesheet I'm using the methods exsl:node-set and set:distinct to access and filter unique nodes from a variable that contains a result tree fragment.
I can write the values of these nodes ...
1
vote
1answer
75 views
XSLT an XML such that everything is the same except one section
Just a quick question. I have one XML and I was hoping to tranform only a section of it without changing anything else. Here is a quick example of what I am looking to do:
Input:
<?xml ...
1
vote
2answers
452 views
Extract the first letter of every word in sentence and make it into one word via XSLT
I am trying to extract the first letter of every word for a sentence to form an one word via XSLT.
Sample Input
`ABC HBO ORACLE 123 (Hello Person)`
Expected Output:
AHO123HP
Thanks in advance ...
1
vote
2answers
811 views
Remove special characters from XML via XSLT only for specific tags
I am having a certian issue with special characters in my XML.
Bascially I am splitting up an xml into multiple xmls using Xalan Processor.
When splitting the documents up I am using their value of ...
1
vote
2answers
533 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
1answer
138 views
Building xalana 1.11 using ICU - Mac
Has anybody compiled xalan 1.11 using ICU?
I am building it using ICU and its generating one library called libxalanMsg.111.0.dylib and its being generated using the below mentioned steps
...
1
vote
1answer
518 views
Xalan redirect:write , use either of two element values to create name of new .xml file depending on null values
So I have the following code:
<redirect:write select="concat('..\\folder\\,string(filename),'.xml')">
Where "filename" is a tag in the xml source. My problem occurs when filename is null or ...
1
vote
2answers
92 views
Integrate Webservice into Java
Edit: Sorry guys, realised I have no idea when it comes to integrating Webservices in Java. Was hoping someone could point me in the right direction.
Original question: Hey everyone, I was wondering ...
1
vote
1answer
327 views
Docbook+Ant: Could not find variable with the name of fop.extensions
After a lot of spent time trying to get my article to compile in Ant with Docbook, I can't seem to make FO compilation work. I'm using Xalan 2.7.0, and everything else (both single-page and chunked ...
1
vote
1answer
585 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
2answers
952 views
A way to split a huge XML file into smaller xml files with XSL
I get a huge XML file containing a list of TV broadcasts. And I have to split it up into small files containing all broadcasts for one day only. I managed to to that but have two problems with the xml ...