Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
26 views

I am new to XSLT and I am trying to simply print one of the values of a key in XSLT3.0. Please help me with this. My XML: <AggregatedData> <wd:Report_Data xmlns:wd="urn:com.workday....
manoj's user avatar
  • 11
Advice
1 vote
3 replies
71 views

I have a task to split an XML that I'm receiving using XSLT. The input XML is formatted as follows: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <...
user3523332's user avatar
2 votes
2 answers
184 views

When doing some numerical calculations in XSL templates I stumbled over the fact that a value of 3.600.000.000 which represents the number of microseconds in an hour can be represented in MSXML v6 ...
blerontin's user avatar
  • 3,197
7 votes
3 answers
181 views

I am working with XSLT 1.0 through a Java project, and I am unable to update to 2.0. I am attempting to write a Parent template that should call within it a Child template. I wish for the Parent ...
Marco Flavio Farella's user avatar
1 vote
2 answers
62 views

I'm trying to sort entries in an XML file using Saxon, Saxon:sort and an XSLT 3.0 stylesheet. I need to sort the nodes by the date in the <blogger:filename> field, which has the date as part of ...
BlueDogRanch's user avatar
-1 votes
1 answer
66 views

Input XML <tns:ipartycredit> <ns3:crPtyRole>ACWINS</ns3:crPtyRole> <ns3:crPtyRoleIndicator>R</ns3:crPtyRoleIndicator> <ns3:crPtyInformationTag>57</...
user11303439's user avatar
1 vote
2 answers
163 views

We are processing XML files of the following form with a burst-streamed XSLT-Transformation. Each Dok is independent of the others and a dynamic error in transforming one <Dok>should not ...
Reto's user avatar
  • 3,163
1 vote
2 answers
69 views

See the XML code of a table below. My task is to add two attributes (NAMEST and NAMEEND) to every ENTRY element which has one or more consecutive following ENTRY elements with the text "##colspan#...
Hermund's user avatar
  • 15
1 vote
3 answers
127 views

There is an outdated section within the data, and I need to replace it. The replacement data is static and needs to go in place of existing Nodes. <headerNode1> <headerNode2> <...
Maggie's user avatar
  • 11
1 vote
2 answers
122 views

I am writing a program, that will divide my students into groups. Lets say the groups are A, B, C and D. In each group there can be only so many students. Those numbers I have in a global variable: &...
trinarSK's user avatar
0 votes
2 answers
76 views

Using Saxon 12.8, I can compile an XML source to a TEX file. I am using the XSL file for Latex from TEIC/Stylesheets to do this. My XML source however has some math that will need the amsmath package. ...
SO Stinks's user avatar
  • 3,465
0 votes
2 answers
90 views

See the XML code of a table below. My task is to add an attribute (MOREROWS) to every ENTRY element which has one or more consecutive following rows with the text "##rowspan##" in the ENTRY ...
Hermund's user avatar
  • 15
2 votes
2 answers
78 views

I have a large sequence of maps: 15,000 rows of 85 columns, initially created from sql: <xsl:variable name="original-sequence" select="sql:prepared-query($connection, $sql)()"/&...
lschult2's user avatar
  • 450
0 votes
2 answers
76 views

I have noticed this xpath misleading behavior problem, for this expression: elemA[ not(elemB) ] it has two meanings: 1. yes show all elemA filtered all childs elemB. eg: select all elements but ...
mr.tee's user avatar
  • 43
1 vote
1 answer
56 views

I am not sure if this is possible with XSLT but I am trying to get the below XML into a format where it is name, title, date (if same date then only get date once), last value of In time (might not be ...
BryanG's user avatar
  • 29
0 votes
0 answers
50 views

When running the below XSLT <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xquery="http://www.w3.org/2005/xpath-functions"...
paulhr's user avatar
  • 389
1 vote
1 answer
48 views

I can use the XSLT document() function to access external resources, so long as any authentication can be passed via the URL, e.g. https://api.domain.com/call_x/id?api-key=abcd1234 However if the ...
Feargal Hogan's user avatar
0 votes
1 answer
32 views

This is a sample of data from my XML table: <table> <tr> <td>LCC/8700087542</td> <td>010E</td> <td>LHAO</td> <td>HWAA</td> <td>Add</...
Shev's user avatar
  • 3
1 vote
1 answer
54 views

Using the latest Saxon parser. This is a snip of a larger XML file. <osm> <node id="38275590"> <tag k="name" v="Wimbledon"/> </node&...
DaveF's user avatar
  • 285
0 votes
2 answers
110 views

(Inspired by an old question) I have some stylesheets that use the anonymous document('') function to implement look-up tables. <!-- example the lookup table data --> <ref:data xmlns:ref=&...
Ben Ketteridge's user avatar
2 votes
2 answers
47 views

I want to use xslt to transpose my input to generate a header for my csv file while printing associated values in the rows Here is my sample XMl <?xml version="1.0" encoding="UTF-8&...
Arthi Velloori's user avatar
0 votes
1 answer
50 views

I am trying to transform an XML inside an Akka Flow, using javax.xml.transform.Transformer: Flow<ByteString, ByteString, NotUsed> transformXml(@NonNull final Source<ByteString, ?> xslt) { ...
Nikolas's user avatar
  • 2,550
1 vote
2 answers
63 views

I have the following stylesheet <xsl:stylesheet version="1.0" xmlns:test="test" xmlns:fn="http://www.w3.org/2005/xpath-functions" xmlns:xs="http://...
Apion's user avatar
  • 33
0 votes
0 answers
82 views

I am having difficulty as I try to remove indentation in an XML document. I am attempting to do this by employing 2 techniques: Adding <xsl:strip-space elements="*"/> Applying “...
jcalder1969's user avatar
2 votes
1 answer
48 views

I have relatively simple xml/xsl but I am not getting the value of the email descriptor in my output. I have tried several versions of getting the descriptor. @wd:Descriptor, @*:Descriptor, wd:...
MaggieW's user avatar
  • 31

1
2 3 4 5
777