Search Results

2
votes

How to select unique nodes in XSLT

Here's an example: <root> <item type='test'>A</item> <item type='test'>B</item> <item type='test'>C</item> <item type='t …
0
votes

What are best practices for designing XML schemas?

There's nothing inherently wrong with using an element or sub-element for every value you'd like to represent. The main consideration is that sometimes it's cleaner to use an attribute. Sin …
1
vote

invalid QName when transforming a .net XSLTransform

You cannot have a space in an element name. …
0
votes

Generating SQL using XML and XSLT

Your SQL statement scares me. XML is case sensitive, and your comparison there is going to fail unless your XSLT transform generates exactly the same casing as your original insert used (including …
1
vote

Generating SQL using XML and XSLT

Your SQL statement scares me. XML is case-sensitive, and your comparison there is likely to fail if the input XML and XSLT (including all elements, attributes, and values) aren't cased exactly like …