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
31 views
How to find min-max occurrence of an element in xsd using xsom
I want to find out the minimum occurence maximm occurence of an xsd element using xsom of java.I got this code to find out complex elements.Can anyone help me in find out occurence of all the xsd ...
0
votes
1answer
23 views
How to parse .xsd file using XSOMParser
I need to parse below XSD file.. and I have to read all the values..
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="urn:books"
xmlns:bks="urn:books">
...
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 ...