Tagged Questions
0
votes
5answers
54 views
Retrieve all the attribute values from XML using XSLT
I can't figure out how to access all the attributes in a tag from an XML document.
Let's say I have the following XML:
<names>
<name firstname="Rocky" lastname="Balboa" divider=", "/>
...
0
votes
3answers
31 views
xsl - Get all attributes from childs
I'm having some trouble getting all the attributes from the parent tag, and their childs.
This is my the XML:
<macro name="editor">
<names variable="editor" delimiter=", ">
...
1
vote
1answer
20 views
XSL template match based on another element's attribute value
I have been successfully finding and replacing an XML tag with XSL, but have found an occurrence where my XSL may not work.
Source XML:
<article>
<parastyles>
<parastyle ...
0
votes
1answer
46 views
XSLT replace null element and attribute value
In the below XSLT I'm checking the following
If element is null then replace then replace it with the value of another element.
If attribute of that element is null then replace it with constant ...
0
votes
1answer
32 views
Merge two differently-formatted XML files with XSLT by matching id
One of my XMLs is like this:
<people>
<person code="111" name="Bob" />
<person code="222" name="Sue" />
</people>
And the other is like this:
<people>
...
0
votes
1answer
20 views
Inserting new element with specifiv attributes
here is an excerpt of the source xml:
<text key="#OK" default="TEST">
<lang id="de" value="i.O." />
<lang id="en" value="OK" />
<lang id="cz" value="ak" ...
0
votes
2answers
95 views
xml:space='preserve' doesn't seem to get on with xsl:apply-templates select=“node()”
Doing some work with xsl - first time I've done anything serious, and I've hit something which I can't explain. Easiest way to show it is with the identity transform:
This works:
<xsl:template ...
2
votes
3answers
72 views
XSLT 1.0: how to get print of first non-empty value of two (see inside)
I want to get first non-empty value of two and put it to "value" attribute of a text input. So, I do:
<input type="text">
<xsl:attribute name="value">
<xsl:choose>
...
0
votes
1answer
27 views
Using XPATH to compute the minimum attribute element and add it to another attribute
My question is similar to this one, in which the author asks how to find the minimum attribute of an set of elements. I'm a beginner at xpath and I'm having trouble taking that answer and adding it ...
1
vote
1answer
27 views
How do I use xsl to transform a xml sitemap that has attributes instead of tags?
I have a simple sitemap that has code like:
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>home page ...
0
votes
1answer
38 views
XSLT - interlink attributes from different child elements
I have the following XML file that stores movies and actors:
<database
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="movies.xsd">
<movies>
...
0
votes
1answer
51 views
XSLT - display child elements in a row
I have the following XSLT code that displays movie information from a local XML file (title, actors, runtime, etc.) and Amazon API product information
(product title and picture) from external amazon ...
0
votes
1answer
52 views
XSLT Convert attribute to element and copy value from an other elemen
I have XML data like this
<ABC version="1.0">
<XYZ>
<ROWSET ROWS="00001">
<ROWDEF>
<COLUMN ID="ACCT_ID" LEN="016" NULL="Y"/>
<COLUMN ...
-1
votes
1answer
39 views
Sort XML elements by certain attributes
I would need to sort an XML document that looks like follows:
<root xmlns="http://my.name.space.com">
<product id="id001">
<datafield name="Name" value="value 1"/>
...
0
votes
1answer
48 views
XSLT - hyperlink an XML element based on its attribute
I have the following XML that stores movies and actors:
<movies
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="movies.xsd">
<movie movieID="1">
...
0
votes
1answer
20 views
XSL Tranformation for Complex Attributes
Im new to XSLT . I have an XML message as below :
<Root>
<Payload>
<SendEmail>
<customerID>123123</customerID>
...
0
votes
2answers
92 views
Merge 2 or more xmls with xslt by attribute value?
I have the following xml:
<PCstore>
<StoreList>
<Store id="001">
<ItemList>
<Items laptop="DELL" price="300"/>
...
0
votes
3answers
81 views
XSLT to remove node and convert atrribute value to element name
I have the following xml
<?xml version="1.0" encoding="UTF-8"?>
<response>
<lst name="somename">
<node1></node1>
<node2></node2>
...
2
votes
2answers
71 views
XSLT get type of an attribute from DTD
Given a valid entry in the DTD of a document:
<!ATTLIST name
id CDATA #IMPLIED
attribute ENTITY #IMPLIED >
How can I get the type of an attribute ...
0
votes
1answer
109 views
XSLT xsl:copy and xsl:for-each on attributes
I have the following xsl template:
<xsl:template match="@*|node()" mode="fix-entity-references">
<xsl:copy>
<xsl:for-each select="@*">
<xsl:if ...
1
vote
1answer
47 views
Access the value of an xml tag via xsl and put this value into an xsl attribute
Good, evening!
I have an xml file with the tag
<min>0</min>
and I am writing an xsl file, which should extract the "0" out of this tag and put it into a jquery mobile slider like ...
0
votes
1answer
82 views
Add attribute to a DOM NodeList node using XSLT
I have to add one attribute Publisher="Penguin" to the nodes from a NodeList : The input xml looks like:
<Rack RackNo="1">
<Rows>
<Row RowNo="1" NoOfBooks="10"/>
...
0
votes
1answer
163 views
Get the attributes from SOAP Envelope with xslt
Hello i have following XML
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" ... someID="ID123">
...
2
votes
1answer
244 views
How to use xslt with attribute values as selectors ?
I am trying to learn xslt and i am working an xml which looks like this.
<Beats>
<Beat>
<Personal type="set">
<Usages type="box">
1233
</Usages>
...
1
vote
2answers
375 views
XSL-T For All Attributes in All Child Elements When Duplicates in Attribute Names
I have a XSL-T which is looping through all the child elements of an XML, and pushing those attributes into a single outputted element. However, there are duplicate attributes in these child elements ...
1
vote
3answers
108 views
Filter for-each by XML attribute
If I have the following XML:
<Results>
<Option isDefault="true" value="1">
<DisplayName>
One
</DisplayName>
</Option>
<Option value="2">
...
-1
votes
1answer
97 views
XSL defining complex (non standard) XML attributes for transformation
Hi I have a xml that I am transforming with an XSL template.
The trouble is that a lot of the attributes stored withinin it that appear to be causing my transform to fail. Is there a way to predefine ...
0
votes
2answers
648 views
Removing spaces in attribute values with xslt
i want to remove spaces from all attributes in my xmls using xslt. I used strip-space, but that removes the spaces from nodes.
My Input xml is:
<OrderList>
<Order OrderDate="26-July" ...
2
votes
3answers
500 views
Why are the XSL functions `ends-with` and `matches` both throwing an error?
I am transforming some XML, renaming each element named alt-title to Running_Head, provided that the attribute alt-title-type is equal to "running-head".
So, the below code is using the line ...
3
votes
4answers
166 views
Output entire XML as an attribute
I'm fairly new to XML and XSL Stylesheets, and I've been tasked with creating a stylesheet for one of our clients. I have already created a stylesheet that outputs an XML in the following format:
...
0
votes
2answers
610 views
XSLT table cells depends on attribute value
<xsl:for-each select="A">
<tr>
<xsl:choose>
<xsl:when test="@a='True'">
<td bgcolor="#FFFF00"><xsl:value-of select="../@e"/></td>
<td ...
1
vote
2answers
1k views
Referencing attribute value in xsl:param xsl:if test condition
I'm trying to retrieve the attribute value from an xsl:param and use it in an xsl:if test condition.
So given the following xml
<product>
<title>The Maze / Jane Evans</title>
...
0
votes
1answer
189 views
Convert All XML Attributes to Elements
I have a bunch of xml elements formatted like so:
<WP featured="yes" player="no" dancers="no" series="logos" archive="no" fanart="no" id="eclipse_logos_">
...
2
votes
2answers
734 views
Convert XML Attributes To Elements XSLT
New to xslt, just trying to convert attributes to sub elements, ie turn the following:
<WP featured="yes" player="no" dancers="no" series="logos" archive="no" fanart="no" id="eclipse_logos_">
...
1
vote
1answer
96 views
when a sibling of a element appear, display attribute value of the element
<a id='a1' name='a1'/>
<b text='b1'/>
<d test='test0' location='L0' text='c0'/>
<a id='a2' name='a2'/>
<b text='b2'/>
<c test='test1' location='L1' text='c1'/>
...
2
votes
2answers
1k views
XSLT to remove some attributes
I have the following XML which can appear in either form in my XML Document:
<Message xsi:schemaLocation="http://www.location.com StructureFile.xsd" xmlns=http://www.thenamespace.com" ...
3
votes
1answer
256 views
XSLT - Select Node WITHOUT an attribute
I want to select all nodes <cci:p> that do not have an attribute.
So, in the example below, there's a node (denoted with bold text or **) that is causing me some issues. Basically, I want to ...
2
votes
2answers
152 views
Using XSLT prepend element attribute to another attribute of another element
I am looking to do a transformation where I take the attribute of one element and prepend it to the attribute value of another. Here is an example of what I would like to do"
<Stuff>
...
1
vote
1answer
105 views
Test if Attribute = Node Value without Using Variables
Ive got this XML file
<all>
<general>
<catagory_name>
<catg>Action</catg_1>
<catg>Other</catg_2>
</catagory_name>
</general>
...
1
vote
4answers
158 views
Counting previous Attributes with a specific value in XSLT
I apologize ahead of time if this isn't properly formatted, but...
I need to take the following xml:
<box r="?" c="?" b="?">
<h r="?" b="2">
<u>
<v c="5" b="2">
...
3
votes
2answers
1k views
XSL check to see if any child node has attribute
I have the following XML:
<record>
<d989 p="Apples" t="Apples"/>
<d990 p="Oranges" t="Bananas"/>
<record_group_1>
<d991 p="Mouse" t="Mouse and Cat"/>
...
2
votes
1answer
525 views
How to map values of an xml attribute to some other values
I have a XML file similar to the following:
<a>
<b value="a123" />
<b value="b234" />
<b value="c345" />
</a>
I need to map the attributes to some other value. ...
1
vote
3answers
549 views
Filter Attributes Using XSLT based on Attribute Names
Sorry if this has been discussed before, but could nt find a suitable answer for my problem.....
I have this xml:
<RootList>
<Root RootAtt1="1" RootAtt2="2" RootAtt3="3">
<Extn ...
2
votes
3answers
2k views
Get tag name/attribute name in XML using XSLT
What's the way to get a tag name and attribute name in XML?
If I have a XML file like this:
<a>
<apple color="red"/>
<banana color="yellow"/>
<sugar taste="sweet"/>
<cat ...
1
vote
1answer
92 views
Obtain an XML element's value given an arbitrary attribute index
Background
Obtain the value from a list of XML elements using a unique identifier.
Problem
Given an XML document of the form:
<root xmlns:r="http://internet.com/network">
<r:equipment ...
0
votes
1answer
278 views
how to convert xml attributes to table columns using xslt
I have an xml like this:
<root>
<row col1="value1" col2="value2" ...... coln="valuen"/>
<row col1="value1" col2="value2" ...... coln="valuen"/>
.
.
.
<row col1="value1" ...
3
votes
2answers
1k views
XSLT Transformation - dynamic element names
Hi I would like to achieve following Transformation
Source Input
<SiebelMessage MessageId="1-18J35" IntObjectName="XRX R5 Letter Instance" MessageType="Integration Object" ...
1
vote
2answers
2k views
Disable output escaping not working for attribute in xslt
I have the following xml-node :
<name>P & P</name>
And following XSL
<a href="example.htm" >
<xsl:attribute name="title">
<xsl:value-of ...
0
votes
1answer
23 views
XSLT 1.0: analyze the variation of a setting
I have block of data sample in XML. Each data has a attribute called "switch" specifying if a switch is off or on ( default value is off ).
The goal is to add this information thanks to XSLT as an ...
2
votes
2answers
1k views
Xpath to search for a node that has ANY attribute containing a specific string?
I can search for a String contained in an specific attribute if I use the following XPath
/xs:schema/node()/descendant::node()[starts-with(@my-specific-attribute-name-here, 'my-search-string')]
...

