Tagged Questions

2
votes
2answers
590 views

get xml attribute named xlink:href using xsl

How can I get the value of an attribute called xlink:href of an xml node in xsl template? I have this xml node: <DCPType> <HTTP> <Get> <OnlineResource test="hello" ...
1
vote
2answers
27 views

How to get all results if there are multiple matches : XSL

I'm practicing some XSL and using this XML document as a simple example: <?xml version="1.1" encoding="UTF-8"?> <zoo xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
1
vote
2answers
174 views

XmlDocument and getting specific Attributes using xPath

I have seen a couple of examples on here where Xpath is used in conjunction with XmlDocument to get a specific attribute from an XmlDocument Node.... Example ...
0
votes
1answer
20 views

XSLT 2.0 template matching - strip all attributes which are not in the desired namespace

I have an XML with differently namespaced attributes - it's basicly a kind of extended XHTML. I want to dump all the non-xhtml namespaced attributes. Examplary source XML: <html> ...
0
votes
2answers
107 views

How do I retrieve an XML Element where an attribute is either X or Y?

Consider this xml: <parent> <child name="alpha" /> </parent> and also this xml <parent> <child name="beta" /> </parent> There should be only a sinlge ...