Tagged Questions
The xsom tag has no wiki summary.
4
votes
4answers
1k views
Using a schema to sort an XML document
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
401 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 ...
2
votes
1answer
1k views
getting the minOccurs attribute using XSOM from an element
How do I get the minOccurs attribute off of an element using the XSOM parser? I've seen this example for getting the attributes related to a complex type:
private void getAttributes(XSComplexType ...
1
vote
1answer
67 views
How to read ID from XSOM XSElementDecl
veI am using XSOM in Java to parse an XSD. It's working really well but there's one piece of information from an element that I just can't seem to get hold of - namely the "id" attribute.
One of my ...
0
votes
0answers
18 views
Getting wrong XSOM baseType for a XSSimpleType
I have a simple xsd
<xs:element name="shoesize" type="shoetype"/>
<xs:complexType name="shoetype">
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attribute ...
0
votes
1answer
55 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
41 views
XSOM parser getResult returning null
I am trying to parse a XSD file. The parser parse method doesn't give any Exception but when I use parser.getResult(), it returns null.
My XSD file have one Schema node in it.
XSOMParser parser = new ...
0
votes
1answer
152 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
265 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
148 views
XSD to HTML Conversion?
strong textHello guys! Is there any way to convert an XSD file to an HTML file...what i am trying to achieve here is parse an XSD file and based on that give the user a form where in he can fill in ...
0
votes
2answers
420 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 ...
0
votes
0answers
354 views
Sample program (or) reference page link details (pdf or doc) for XSOM using parse XSD
Pls provide any sample program for XSOM using parse XSD (Java platform)
or
any reference page link details (pdf or doc) for XSOM using parse XSD?
I need to get the attributes and elements(including ...
-1
votes
2answers
412 views
Parsing wsdl and xsd
I've been looking for a way to programmatically parse WSDL and associated XSD files to get values from annotation / documentation tags. I managed to get values from wsdl using wsdl4j, but how do i do ...