Tagged Questions

4
votes
4answers
2k views

Using a schema to reorder the elements of an XML document in conformance with the schema

Say I have an XML document (represented as text, a W3C DOM, whatever), and also an XML Schema. The XML document has all the right elements as defined by the schema, but in the wrong order. How do I ...
0
votes
1answer
285 views

How to get list of elements from XSOM parser

With XSOM, how can I obtain information for elements from a sample schema? (see below) I've been trying to use the iterateElementDecls() method but only can obtain the top element (note). <?xml ...