Skip to main content
Filter by
Sorted by
Tagged with
-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
0 votes
1 answer
86 views

A variable is being used to store related record information The variable has been updated to dynamically select, depending on results of a match, eg <xsl:variable name="SO"> ...
Jonny Hotchkiss's user avatar
0 votes
1 answer
49 views

Need your help. I have some XML file with data before the transformation. <?xml version="1.0" encoding="UTF-8"?> <Envelope> <filter> <type>book</type> <...
Bc. MD. Peter Trahnyuk's user avatar
1 vote
2 answers
59 views

My understanding is that <xsl:variable> is immutable and cannot be reassigned. I am new to XSL and came across a situation like what is in the example below. <xsl:stylesheet> <xsl:...
hungerstar's user avatar
  • 21.8k
0 votes
2 answers
436 views

I'm pretty new to XSL(T). I'm not sure its relevant but I'm working with IBM DataPower. I'm trying to use XSL to parse an incoming URI which looks like this: http://ip:port/Nucleus_v2.9.3/...
C. Suttle's user avatar
  • 190
3 votes
1 answer
50 views

I have a XML-Structure like this: <TR> <Zeile status="done"> <Typ>FUNCTION</Typ> <Name>PressKey</Name> </Zeile> <Zeile status="...
Daniel's user avatar
  • 33
0 votes
1 answer
256 views

I'm hard-coding the colspan value, but could I calculate it from the number of table cells in a row, e.g. using an xsl:variable? The difficulty is in the fact, that the XML nodes contain more ...
Wim Ombelets's user avatar
  • 5,285
0 votes
3 answers
3k views

I try to transform a piece of XML that is generated by multiple sources. If I enter the text directly into the value-of select statement it works as intended. But as soon as I try to use variables it ...
Kirschi's user avatar
  • 1,128
0 votes
1 answer
191 views

I've seen that similar questions were asked, but none helped. I have a variable, called 'var': <xsl:variable name="var"> val </xsl:variable> And I want to use it as such: <a ...
Mugen's user avatar
  • 9,275
12 votes
1 answer
13k views

I just want to confirm whether we can insert html tags inside the xsl variable? example <xsl:variable name="htmlContent"> <html> <body> hiiii </body> </html> </xsl:...
Ironman's user avatar
  • 556
1 vote
1 answer
3k views

I have a problem with processing following xml code: <?xml version="1.0" encoding="UTF-8"?> <searchresult> <head> <heading> <title>Column1</title> ...
Jan Stanicek's user avatar
  • 1,323
3 votes
3 answers
2k views

I don't understand output from this stylesheet: <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <xsl:apply-...
Peter Štibraný's user avatar