3
votes
3answers
767 views
What is the best way to parse an XML boolean attribute (in .NET)?
An XML attribute declared as xs:boolean can acceptable be "true", "false", "0" or "1". However, in .NET, Boolean.Parse() will only accept "true" or "false". If it sees a "0" or "1", it throws a "Bad …
1
vote
5answers
101 views
XML: attributes or children?
In XSD, SOAP and other XML conventions you'll often see things like:
<book>
<title>Harry Potter</title>
<author>J.K. Rowling</author>
</book>
Now I'm …
0
votes
2answers
68 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 …
