Tagged Questions
0
votes
1answer
52 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
18 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
55 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 ...
0
votes
0answers
79 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 ...
1
vote
1answer
47 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>
...
-4
votes
1answer
914 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 ...
0
votes
1answer
165 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
574 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 ...
0
votes
1answer
153 views
java.lang.StackOverflowError while processing a xml using xsl
I am converting one xml format to another xml format using a XSLT. While processing I am getting following error
java.lang.StackOverflowError
at ...
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
651 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
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/>
...
1
vote
2answers
1k 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 ...
0
votes
1answer
168 views
Exclude namespace declaration from result of XSL transform
I'm generating an XML document in parts using various transforms. In particular, I'm generating a header which contains all of the namespace declarations and is then prepended to the document. ...
