0
votes
1answer
20 views

Change text of elements identified by dynamic XPath

I have an XML with 2 XML fragments, 1st one is a fragment where the new values must be applied (which can have pretty complex elements) like ... some static parents <a:element1> ...
0
votes
2answers
14 views

XSL: Combining Two NodeSets in XSL 1.0

I will precede this with the fact that I am new to XSLT (1.0 in this case) and have had little luck on getting this resolved on my own. I have the following XML: <Root> <Info> ...
3
votes
2answers
52 views

XSLT output is verbose and messy

I'm starting to use XSLT to temporarily support the current 1.0 version of our webservice while clients transition to 1.1, converting old calls to the new format. For such change, I need to change ...
2
votes
1answer
55 views

XSLT 2.0 xsl:value-of separator attribute not working in Java 1.7 with apache.xalan

The XSLT 2.0 xsl:value-of element separator attribute appears to not be working with the built-in Java 1.7 XSLT processor. Here's the example (slightly edited from Chapter 4 of XSLT 2nd ed. to reduce ...
2
votes
1answer
67 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 ...
1
vote
3answers
198 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 ...
0
votes
1answer
65 views

Capture generated output file path and name using CSSDK

We are in the process of converting over to using the XSLT compiler for page generation. I have a Xalan Java extention to exploit the CSSDK and capture some meta data we have stored in the Extended ...
0
votes
0answers
137 views

With default java and xalan in xsl call external javascript [closed]

I use jdk 1.6 from sun. I have simple java program: import javax.xml.transform.*; import javax.xml.transform.stream.StreamResult; import javax.xml.transform.stream.StreamSource; import ...
1
vote
2answers
51 views

xsl different behaviour for a literal and a variable

This is a part of my template: <xsl:value-of select="format-number(469802.00*30.05, '#.00')"/> When used, it yields a 14117550.10. However, when i first store the product in a vairable and ...
1
vote
1answer
205 views

Save data from XSLT generated from to an XML file

i have a trouble while trying to save some data to XML using XSLT. So the problem is that everything seems to be ok, no exceptions are thrown, log files are also clean, but I can't see any changes in ...
2
votes
1answer
184 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 ...
0
votes
2answers
109 views

Adding an attribute after an element with apply-templates behaves differently with xalan-c and xsltproc. What is correct?

I am noticing the following difference between xalan-c and xsltproc. Which one of these is correct? What does the spec say about this? Source xml :- <a attr="val1"> <b d="5"> ...
0
votes
2answers
82 views

Match document root node with a prefix

I have a XML document which root node is sv:node and I am trying to define a template who match this root node. When my root node has no prefix it usually works but in this case an exception is ...
0
votes
2answers
82 views

SAXParseException that only occurs locally. Works on WebServers

I am writing a junit test that is testing and older piece of code. This code works on our iplanet webservers and our local Tomcat servers and runs with no problems. However when run by the JUNIT test ...
1
vote
1answer
65 views

XSLT: omit declaration embedded within text

Hope you guys can help. I have a string (bear in mind it is XML-like but my application treats it as a binary string) that contains multiple xml declarations within the text. I would like to remove ...
1
vote
3answers
406 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 ...
2
votes
2answers
103 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. ...
1
vote
2answers
508 views

Work with java collections in XSL using xalan extension

I want to iterate ArrayList <String> and put all strings to output tree, but have no any idea how to do it. java method: public ArrayList<String> getErrorList(String name) { if ...
0
votes
0answers
42 views

Xalan serialize SAXImpl

My objective is to emulate (implement a superset of) result-document with an extension function in Java. I am using Java's built-in Xalan processor. I want to serialize a tree fragment to a string ...
0
votes
1answer
272 views

xalan and custom function for xslt

I'm using Apache FOP with the IKVM from my c# code. I generate the pdf by using the xslt stylesheet to get the result as xsl fo. I have one problem, that is usingthe custom functions. My stylesheet ...
0
votes
2answers
256 views

Catching exceptions with Xalan xslt

I have the folowwing XSLT based on Xalan: TransformerFactory factory = TransformerFactory.newInstance(); XalanErrorListener listener = new XalanErrorListener(); factory.setErrorListener(listener); ...
0
votes
1answer
96 views

Select the string of an XSLT param given at command line

I am using XSLT params to set an absolute path in an attribute at runtime using Xalan-C. Basically, my input XML is something like this :- <root xmlns="initial"> <!-- document goes here ...
0
votes
1answer
844 views

'HIERARCHY_REQUEST_ERR: An attempt was made to insert a node where it is not permitted. | When I copy-of result of set:distinct

I trying transform (in eclipse) a document below: <doc> <city name="Paris" country="France" /> <city name="Madrid" country="Spain" /> <city ...
0
votes
1answer
364 views

Is it possible to use javax.xml.transform.Transformer with a xslt that contains some xalan:redirect?

I wrote a xslt for xalan, that works fine with the xalan cli (org.apache.xalan.xslt.Process). The xslt uses the xalan extension redirect It does generate several xml files like expected. Now I would ...
0
votes
2answers
109 views

XSL to transform only elements in a certain namespace

I have an xml document that is structured somewhat like this :- <catalog xmlns="format_old" xmlns:final="format_new"> <final:book> <final:title>blah</final:title> ...
1
vote
2answers
45 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" /> ...
0
votes
0answers
58 views

Refactor XSLT Java Extension Class Package without Affecting XSLT

I have a number of XSLT templates that use static Java classes as XSLT Extensions to provide additional functionality. I need to refactor some of these extension classes which requires a change to the ...
0
votes
1answer
221 views

Xalan Java extensions 'Cannot find class' error on JRE 7

I am running into a 'Cannot find class 'pkg.XSLTFunctions'. error on JRE 7 leading to a failures in compiling an XSL using Xalan. This worked perfectly in JRE 6. Here are some specifics of my ...
1
vote
0answers
252 views

Get ArrayList in xsl using xalan

I have a page for adding data. And validator <xsl:param name="validator"/> <xsl:variable name="errorList" select="validator:getErrorList()" /> <xsl:for-each ...
0
votes
1answer
196 views

xalan validation java.lang.NoSuchMethodException: For extension function

I try to validate data in my page. <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" ...
0
votes
1answer
117 views

Schemalocations not copied in XSLT with Xalan Pipeline extension

i got xml files with "xsi:schemaLocation="location1 location2 ..." and alot of "xmlns:someNs". While the namespaces will e copied into the new document the schemaLocations are not and i realy can't ...
0
votes
0answers
228 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
89 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> ...
1
vote
1answer
48 views

Will there be any tree generated in the buffer for <xsl:apply-templates> How can I imagine that?

My input.xml is as follows: <root> <Property> <info> <Name>A</Name> <Value>1000</Value> </info> ...
1
vote
3answers
330 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: ...
2
votes
1answer
206 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 ...
-3
votes
1answer
985 views

Convert one xml file to another xml file using xsl transformation

This is something related to XSL transformations. input.xml <?xml version="1.0" encoding="utf-8"?> <?xml-stylesheet type="text/xsl" href="/x/transform.xsl"?> <!-- input file root ...
3
votes
2answers
947 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 ...
-2
votes
1answer
546 views

Invalid factory configuration javax.xml.transform.TransformerConfigurationException: Failed to compile stylesheet

When i use the combination of XSLT 1.0 and saxon9he.jar for my xml to pdf conversion using xslt and xsl-fo, i am getting the exception that Invalid factory configuration ...
3
votes
2answers
387 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) ...
0
votes
1answer
173 views

Text node content escaped by Xalan extension

I have a Xalan Java extension which returns a DocumentFragment. In my XSLT, I invoke it with something like: <xsl:copy-of select="java:org.foo.myMethod($a, $b)" /> The problem is that ...
2
votes
2answers
607 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
1answer
206 views

Transforming XSL with XSL

A question about Martin's answer: Martin Honnen's answer works great, but not with the root element. Let's say I have "cars" as a root element: <?xml version="1.0" encoding="UTF-8"?> ...
9
votes
1answer
431 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 ...
0
votes
1answer
896 views

Could not find the main class: org.apache.xalan.xslt.Process

As part of a project, I have been asked to carry out an XML to HTML transformation. I have to use Xalan Version 2.7.0. However when I set the CLASSPATH for xalan in command prompt: set ...
0
votes
2answers
714 views

Calling Java function via XSLT in JBoss throws transformer exception (works in tomcat)

I have a public static 0 argument function in Java that I am trying to call through XSLT in a webapp. When I run it in tomcat (5.5.34), it works fine, but when I run it in JBoss (6.1 final) I get the ...
1
vote
1answer
279 views

Parts missing in an XSLT transformation output

I'm using a C++ version of Xalan 1.10 under Windows and I'm trying to produce an Apache FOP file out of an xml document. The files are rather large and complex, but the following samples illustrate ...
1
vote
0answers
94 views

exslt distinct() does not work with xalan compiled (but works in interpreted)

I have this: <xsl:message><xsl:copy-of select="set:distinct(//property)"/> </xsl:message> <!--<xsl:message><xsl:copy-of ...
0
votes
3answers
47 views

What is the XSL version supported by xalan 1.8 library

What is the XSL version supported by Xalan 1.8 library ?
2
votes
1answer
283 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), ...

1 2 3