Xalan is an open source XSLT 1.0 processor with implementations in Java and C++.
2
votes
1answer
46 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
1answer
34 views
Cross compiler error: reference 'm_memoryManager' cannot be decalred 'mutable' [-fpermissive]
I am compiling for Arm11 and use xalanc. I get a bunch of these:
In file included from /xx/include/xalanc/DOMSupport/DOMServices.hpp:39:0,
from /xx/include/xalanc/XPath/XObject.hpp:39:43,
from ...
0
votes
0answers
4 views
XALAN-J encoding issue using external javascript function
Hi I have a simple XSL template:
....
<xalan:component prefix="js" functions="sanitize">
<xalan:script lang="javascript" src="../resources/sanitize.js" />
</xalan:component>
...
1
vote
3answers
96 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
50 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
33 views
Xalan versus Java 6 identity transform namespace handling?
I have a org.w3c.tidy.DOMDocumentImpl Document object, which I'd been converting to a string using the javax.xml.transform.Transformer identity transformation.
I have found that using Sun/Oracle ...
0
votes
0answers
36 views
Java XPath HTML : grab shortcut icon (favicon)
I just want to grab the link to the favicon from a HTML website (parse with Jtidy) and print it on the screen.
This doesn't work :
NodeIterator nl = ...
0
votes
1answer
19 views
Interpretation of int returned by XalanInitialize()?
I am using XALAN to transform from xsl to html,
following is the snippet of the code,
//
// XALAN_USING_XERCES(XMLPlatformUtils), init namespace
//
...
0
votes
1answer
59 views
How to convert a Java object to String using Saxon
I am facing a problem with Xalon while converting Java object to String, i.e empty open close tags are converted to self closing tags. eg. <span></span> gets converted to </span>.
...
0
votes
0answers
17 views
sending xml as a parameter to XSLT file while XSLT processing
I need to send 'xml' file as a parameter to XSLT file for XSLT transformation process.(am using XALAN XSLT processing)
I need to use' transformer.setParameter(xmlfile,xmlfilevalue)'.
Can anyone help ...
0
votes
0answers
132 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 ...
2
votes
1answer
108 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 ...
0
votes
0answers
52 views
Camel FOP File not found issue with xslt endpoint
I'm trying to write a simple route to convert a DocBook document to a PDF using FOP.
Here is the relevant code snippet from my route definition:
from("file:src/data?noop=true")
...
1
vote
2answers
44 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
177 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 ...
0
votes
0answers
50 views
Unable to compile Xalan-C
I am trying to compile Xalan-C 1.10 with Xerces-c++ 2.8.0 using Visual Studio 2010.
Here are the steps that I did:
1) Compiled Xerces library version 2.8.0
2) Converted Xalan solution file (VC 7.1) ...
2
votes
1answer
173 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 ...
1
vote
0answers
93 views
NullPointerException in grails rendering plugin if HTML tag id is set
I am using Grails rendering plugin/service to create PDF. PDF data can be previewed by the user in the browser (then he clicks "download" button and gets PDF). Some of the templates for PDF and for ...
0
votes
0answers
52 views
Invalid conversion from SimpleResultTreeImpl to node-set
I keep getting this error "Translet errors:Invalid conversion from 'com.sun.org.apache.xalan.internal.xsltc.dom.SimpleResultTreeImpl' to 'node-set'."
I know the problem is when I pass a number as a ...
1
vote
1answer
121 views
Xalan call user Java function
I try several test and i search any solution but I can't find anything.
I have to call my Java function in a XSLT. My last solution, that I believe is the best is the following, I declare my class ...
1
vote
2answers
129 views
Why does xalan.jar crash eclipse when deploying android app
I am developing an android app on Eclipse Juno running on Windows 7 64bit (8GB ram) So I have my android project and I place some jar files in the /lib folder so I can use them in my app. This is ...
0
votes
2answers
57 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
75 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
70 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
61 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 ...
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 ...
0
votes
2answers
721 views
java.lang.NoClassDefFoundError: org/apache/xpath/XPathAPI
I am executing a class in eclipse through main, and as I result I am getting this error
java.lang.NoClassDefFoundError: org/apache/xpath/XPathAPI
I am using jRE6.
Please help me in solving this
1
vote
3answers
351 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
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. ...
1
vote
2answers
444 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
38 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 ...
1
vote
0answers
116 views
Xalan 2.7.1 and IIS 7 Cause HTML Truncation
I have a rather sticky problem for which I've done a lot of research but have had no luck in finding a solution.
I have a web application comprised of Tomcat servlets. Tomcat is running on a Windows ...
0
votes
1answer
642 views
Error when runing XSLT with eclipse
When I use eclipse xsl development tools to run xsl transformation, it reports the following error. But using saxon there is no problem. SIt would be appreciated if some expert can provide possible ...
0
votes
1answer
258 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
214 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
3answers
77 views
Segmentation fault when transforming document with Xalan
I'm using Xalan-C++ to do an XSLT transformation and I'm getting a segmentation fault in this code:
XalanTransformer evalTransformer;
evalTransformer.setUseValidation(false);
...
0
votes
0answers
36 views
What is best practice for setting an xmlns attribute using SAX?
I'm using Xalan-C++ to create an XML document. My code is based on the DocumentBuilder sample, so I'm using SAX to create the document. It's mostly working, but I'm unsure how an xmlns attribute ...
0
votes
1answer
91 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
0answers
78 views
XSLT V1.0 processing node as XML String and pass it to different XSLT using Xalan C++ XSLT processer?
I am trying to read an XML present inside an XML tag.
Problem is I can't use Saxon XSLT processor as our prod system does not support.
Also we are using Xalan C++ libraries to transform support EXSLT ...
0
votes
1answer
732 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
66 views
Why can't I use a static_cast from one Xalan class to its base class?
Why does the compiler (g++) complain about this line of code?
XalanNode *docElement = static_cast<XalanNode*> (docBuilder_->getDocument()->getDocumentElement());
The error I get ...
0
votes
1answer
290 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
101 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
44 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
126 views
Issue with Saxon and Xalan in my WebApp when defining a SOAP connector using Spring
I am trying to add a SOAP Web Service to an existing application and am having a large amount of trouble due to Saxon / Xalan conflicts. When my Web Application starts I always get the error:
...
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
208 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
233 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
180 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
115 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 ...
