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 ...
2
votes
1answer
627 views

Parsing XSD Schema with XSOM in Java. How to access element and complex types

I’m having a lot of difficuly parsing an .XSD file with a XSOM in Java. I have two .XSD files one defines a calendar and the second the global types. I'd like to be able to read the calendar file and ...
0
votes
1answer
82 views

How to get Use Attribute in XSOM Java library

I am using XSOM java library to parse XML Schema. I don't know how to get the attribute "Use" for the Attribute Declaration. Here is my code to get all attribute declarations for the CompleType // ...
0
votes
1answer
178 views

XSOM vs Apache XmlSchema

I wanted a library which can be used to introspect an XSD. Basically parse it and give an object representation so that I can get the types, names, annotaions,namespace etc. So I came across mainly ...
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 ...
0
votes
2answers
440 views

XSD to DBMS in Java

I have been searching for 3 days but i can't find a solution.I want to parse the XSD file to create mySql tables in java.I don't want to validate xml files with the xsd's by the way. Firstly, I used ...