Use this tag for questions specific to XSL Transformations version 2.0, the successor to XSLT 1.0.

learn more… | top users | synonyms

0
votes
0answers
6 views

XSLT 2.0: Filtering through nodes / text with analyze-string but needing to also grab XML tags

I'm working through my first major XSLT project, and am a bit of a novice, so please be patient with my ignorance. Our group is working on a transform of existing XMLs to an entirely different ...
0
votes
1answer
18 views

Error in loading XSL files and DTD files in XSLT transformation

I am trying to create HTML files using XSLT, I have used xml file and xsl files to create HTML file. Here some other xsl files which are located in same location are included in xsl file by using ...
0
votes
1answer
31 views

Finding with regular expressions specific text wrapped around node

I'm very new to XSLT and I'm not a programmer, so sorry for my possibly stupid question. I need to find certain citations which can look like this: BSK StPO-`<emphasis ...
2
votes
2answers
38 views

how to convert xslt version 2.0 to version 1.0

i am using xslt document which uses xpath version 2 functions. I only have xalan 2.6 jar which has xslt 1.0 processor, its a constraint i cannot change it..please help me if there are any tools that ...
0
votes
2answers
26 views

New XML creation using XSLT

I have an input XML message that I am trying to tranform into a different XML altogether with the values taken from the input. Can you please look into it and guide me with a sample XSLT? Input XML: ...
1
vote
1answer
19 views

XSL XAML unique names

I try to make a XAML file using XSL, and one of the things I need is a unique name for 100 textblocks. I create the Textblocks in a for-each loop (which works, all the elements are created) and then ...
1
vote
2answers
16 views

Can I apply a character map to a given node?

If I look at the xslt specs it seems a character map applies to the whole document, bit is it also possible to use it on a given node, or within a template ? Example : I have a node containing look ...
2
votes
1answer
25 views

Writing a recursive function XSLT/XPath for computing new values

I am trying to write a recursive function that computes new values. The basic idea of what motivates me is that given levels of an outline, I want to compute new levels such that the numbers are ...
1
vote
1answer
26 views

tagging words using lookup, what's the best approach?

I have some strings I want to test to see if they contain specific words. The words in question are in a lookup node, and if there is a match the word in the string needs to be tagged. I have a script ...
0
votes
2answers
41 views

Which is a good XML editor, that supports XSL 2.0 [closed]

First of all - I am completely new to XSL. I have an XML document that I want to organize in a better way, using XSLT, but I would like it to support XSL 2.0, because it is more understandable and ...
0
votes
1answer
26 views

Adding up numbers depending on textual entries in XML using XSL

I have a XML like this: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <variablelist> <varinfo id="id-5"> <vardef> <name>A</name> ...
0
votes
0answers
20 views

xpath not working in tomcat 5 server

Below is my sample xslt file <?xml version="1.0"?> <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
2
votes
2answers
55 views

XSLT Remove leading and trailing whitespace of all attributes

How can I create an identical XML sheet, but with the leading and trailing whitespaces of each attribute removed? (using XSLT 2.0) Go from this: <node id="DSN "> <event id=" 2190 "> ...
0
votes
1answer
28 views

How to extend a Muenchian XML grouping?

I have this XML: <events> <event name="Christmas" attendees="1"/> <event name="Halloween" attendees="3"/> <event name="Easter" attendees="2"/> <event name="Easter" ...
0
votes
1answer
10 views

Splitfunction gives troubles

I'm facing the following problem or challenge. I've a an element in my source XML which can have 450 characters. With my xslt I want to transform this into chunks of 75 characters. ... ...
2
votes
1answer
37 views

XSLT2.0 Uppercase first Letter of Regex Match

I have a a use case to convert camelCase elements in an xml document to NewCase as shown: Current: <firstName>John</firstName> <lastName>Smith</lastName> ...
1
vote
3answers
41 views

How to get nodes in this case

I am using xslt 2.0, I have following sample xml, I want to get all "header-lightgray" nodes between the two "header-gray" nodes, the problem here is: I don't know how many "header-lightgray" there. ...
1
vote
2answers
40 views

How to load &gt & lt in to another xml using xslt2.0?

Input XML &lt;note&gt; &lt;from&gt;Example&lt;/from&gt; &lt;heading&gt;Reminder&lt;/heading&gt; &lt;body&gt;XSLT conversion&lt;/body&gt; ...
0
votes
1answer
34 views

how to get date difference in xslt

My Schema is : <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:datetime="http://exslt.org/dates-and-times" ...
0
votes
1answer
29 views

XSL grouping by group-starting-with

I have a problem with XSL. I have some xml documents (similar to docbook) that have to be transformed to xsl. Some of the documents contains sect2-title, and the next sibling is a part of this tags. ...
1
vote
1answer
21 views

In XSLT 2.0, why is there no fn:decode-for-uri?

I have a URI encoded string in XML but can't decode it using xslt. There is a fn:encode-for-uri to encode the string But no decode-for-uri to decode. Is there a function I have missed? If not, why ...
0
votes
1answer
33 views

How to create a folder during xslt transformation with Saxon in which to copy binary data afterwards

I'm currently in the process of writing an XSLT Stylesheet that will handle the transformation of DOCX Documents to (X)HTML files. Given the fact images are either included (in the /word/media ...
1
vote
2answers
39 views

XSLT: Concat series of ranges, if they are contiguous

I have a series of integer ranges: <ranges> <range> <start>1</start> <end>10</end> </range> <range> ...
1
vote
2answers
53 views

How to find all numbers in a string

Ich versuche mit einer Funktion sämtliche Zahlen aus einem Element oder String zu ermitteln. Dabei soll die Anzahl der Zahlen und ihre Stelligkeit egal sein. Folgende Funktion habe ich bislang ...
0
votes
1answer
33 views

How to load base64 encoded text into an XML document using XSLT?

How can I load base64 encoded text into an XML document using XSLT? For instance, if I had the following two documents input file 1: YTM0NZomIzI2OTsmIzM0NTueYQ== input file 2: <xml> ...
0
votes
1answer
18 views

XSLT 2.0 build element dynamically

I would like to write an xslt to transform the following XML: <instruments> <instrument>1111-A01</instrument> <instrument>1111-A02</instrument> ...
0
votes
1answer
65 views

Either a source document or an initial template must be specified

I'm trying to run the following xproc code which involves sequence of xslt steps in pipeline. However the Calabash is not able to read or get the source document although the 'href' link is clearly ...
0
votes
1answer
19 views

How to get the properties from processing-instructing() and store in Global variable in XSLT

I have more than one processing-instructions in xml, but have to get specific PI(i.e xpp:PageOption) and stored in Global variable.how can i achieve this. Please help me Please find the below sample ...
1
vote
1answer
40 views

Stylesheet is printing data. Why?

I really can't understand this. When running my stylesheet below why are my parameters (see parameters in XML below) printed? That's the only thing that is getting printed. I expect nothing to be ...
0
votes
2answers
49 views

Converting date string in XML using XSLT

I know there have been similiar posts to this, but I've struggled to find a solution. I have XML data like so: <item> <title> A Title </title> ...
0
votes
1answer
27 views

xsl:for-each-group positional grouping flat xml to hierarchical

I have a flat xml file that needs to be converted to hierarchical. I used the nested grouping idea from here xsl:for-each-group help needed. It's working for the most part except for a couple of ...
-1
votes
1answer
25 views

xsl:for-each-group positional grouping

I have a flat xml file that needs to be converted to hierarchical. I used the nested grouping idea from here xsl:for-each-group help needed. It's working for the most part except for a couple of ...
0
votes
1answer
15 views

group-ending-with - where is my text gone?

I'm struggling with some basic xslt grouping, but fail to understand where things go wrong. Take below xml snapshot : <ul> <li>This is a text only node</li> <li>This one ...
0
votes
3answers
41 views

xsl copy-of by condition in for-each

Here is a XML example: <OUT> <Header> <LineType>H</LineType> <DocumentType>OUT</DocumentType> <ClientCode>177</ClientCode> ...
1
vote
1answer
40 views

XSL to make all leaf nodes 'starting with small-letter' tag attributes

I am trying to do an XSL transformation which would convert all leaf-tags starting with small letter '[a-z]' into the parent tag's attribute. Everything works fine till a leaf tags comes really down ...
0
votes
2answers
39 views

How to apply a function to a sequence of nodes in XSLT

I need to write an XSLT function that transforms a sequence of nodes into a sequence of strings. What I need to do is to apply a function to all the nodes in the sequence and return a sequence as long ...
0
votes
1answer
22 views

How do I change the XSLT provider for Spring MVC (i.e. Plug in Saxon 9.x)?

I've done a google but can't see anyone talking about a solution. Is there a proper way of plugging in Saxon so that Spring MVC uses it for its XSLT views instead of whatever comes with the JDK, ...
0
votes
1answer
21 views

Changing string patterns to elements using XSLT 2.0

I'm converting an embedded text pattern to an element. Everything I seem to do add &lt;hit&gt; rather than <hit>. Here is my input... <?xml version="1.0" encoding="UTF-8"?> ...
1
vote
1answer
23 views

XSLT: deep-equal without order/sequence

We are having 3 different programs/medium wherein the same kind of XML is getting generated which varies in values and ordering of element. I am supposed to pick particular element from those XML and ...
0
votes
2answers
27 views

XSLT group-by throws an error

The xml is as below: <Words num="1"> <Word> <search>Apple</search> <replace>Fruit</replace> </Word> <Word num="2"> ...
0
votes
0answers
88 views

Reading a XML file from XSL using relative path in Websphere

I am using XSL for XML transformation and I need to use this transformation from a web service project. For transformation I'm using precompiling facility of IBM XML. Following is hoe precompiling is ...
0
votes
1answer
26 views

XSLT: merging files but with better performance of the process

I have two XML files and desire a merger, the criterion for this merger is as follows: nodes1.xml file content: <nodes> <node> <type>a</type> ...
0
votes
2answers
108 views

Sitecore: Cannot get all the values inside of a multi-list item

For example I can get to a Profile created in site core and I can get it's name. (SiteCore) Settings > Profile > UserTypes > Entertainment Executive > AR Executive <xsl:variable name="ARExec" ...
0
votes
1answer
51 views

Use position of current node to access value of another node

I have an xml source that approximates a table layout (output from a program) - a is the table holder, b hold the column headings d, c are the rows and e are the row cells: <?xml version="1.0" ...
0
votes
2answers
47 views

How to display current time in logs using XSLT2.0

How to display current time/date in Logs using XSLT-2.0 . please help me
0
votes
1answer
24 views

xslt - removing quotes, single quotes, <, >, \, / using the replace function

I have tried to look at previous answers, but it is not clear to me. I would like to use the replace function to replace various characters that are causing me issues during saxon tranformation. My ...
2
votes
1answer
54 views

XSLT 2.0 - change namespace without discarding existing prefix bindings

Here's my input XML document: <test xmlns="http://www.example.com/v1"> <qnameValue xmlns:foo="http://foo.example.com/">foo:bar</qnameValue> </test> I want to use XSLT ...
1
vote
3answers
53 views

Better performance with XPath Axes Vs Location Path Expression in XSLT/Xpath

which one give better performance when we handling XML with XSLT XPath Axes (i.e. parent,attribute,child.....) or Location Path Expression (i.e. ./.., ./@attribute ,./childnode,... ) Please help me ...
0
votes
2answers
42 views

xsl:if or xsl:applytemplate which one has better memroy usage

Lets say that I have a input like following. <country> <name>countryname</name> <capital>captialname</capital> <population>19000</population> ...
2
votes
3answers
75 views

Create a recursive string function for adding a sequence

I've a challenging problem and so far I wasn't able to solve. Within my xlst I have variable which contains a string. I need to add the following sequence [eol] to this string. On a fix position ...

1 2 3 4 5 18