XML Schema Object Model (XSOM)

learn more… | top users | synonyms

0
votes
0answers
121 views

High Performance Parsing of XML schema's in Java

I want to read XML Schema files in Java and store them in a database. Practically, I would like to do this using an Object Model so I used XSOM but it takes nearly five minutes to walk through the ...
0
votes
0answers
98 views

Parsing XSD file with XSOM

I'm parsing a FIXML file with XSOM. I'm in troubles getting the <xs:complexContent> information. This is the example: <xs:complexContent> <xs:extension ...
1
vote
1answer
182 views

XSD circular import

I need to parse a XSD with XSOM but this XSD contains circular imports. A.xsd <xs:schema xmlns=”ns1” targetNamespace=”ns1”> <xs:import namespace=”ns2” schemaLocation=”B.xsd”/> ...
2
votes
1answer
230 views

Null pointer Exception when processing XSD using xsom

i have an XSD like this <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="www.aaa.com/aa" xmlns:xs="http://www.w3.org/2001/XMLSchema"> ...
0
votes
0answers
69 views

Retrieving minOccurs/maxOccurs from XSSimpleType in XSOM

How do I retrieve the minOccurs/maxOccurs for an element that has an XSSimpleType using the XSOM parser? I'm able to get this information for a XSComplexType (through Particles), but have yet to find ...
1
vote
0answers
93 views

Retrieve the parent component of an XSComponent in XSOM

I'm using the XSOM framework to parse a batch of XSD files, and then write them into a graph db. For every XSDeclaration, there is a possibility to check whether or not they are local, or global. In ...
0
votes
0answers
206 views

Traversing XML schema in Tree style using XSOM library for java

I'm trying to traverse XML schema using XSOM Java library in tree style. I know that DOM api can represent XML file in a tree in the memory but if XSOM can do that I will be so easy for me, instead of ...
0
votes
0answers
184 views

Getting each child elements of each element in XSD file using XSOM library

I want to retrieve elements of XML schema with its hierarchy. This is important for me to know the relationship between the elements (Root, elements, sub-elements, and so forth). Is there any chance I ...
0
votes
0answers
167 views

Exceptions transforming WSL schema using XSOM

I have two XSD files that I need to parse. Plus one wsdl file with an inline schema. I am using XSOM to parse all three files. The "XSD" files get parsed correctly. But , when I try to transform the ...
0
votes
1answer
524 views

Parsing XML schema java

I need to parse XML schema (source can be wsdl file or xsd ) and extract all the complex types and their constituent elements with their types.. I have used JAXB (xjc)but it does not return me a list ...
1
vote
1answer
466 views

how to get max depth of a xsd using xsom\dom\jaxb?

how to get max depth of a xsd using xsom. For e.g: total number of elements under each complex types of the xsd? Also if as complex types is there under that complex types the number of element + ...
0
votes
1answer
348 views

Retrieving minOccurs and maxOccurs from XSElementDecl in XSOM

I have read a similar topic on the matter: getting the minOccurs attribute using XSOM from an element but the answer seemed a bit suboptimal, especially when there are hundreds of elements in one ...
0
votes
1answer
358 views

Getting the xs:choice maxOccurs and minOccurs attributes with XSOM

I have a following piece of schema code: <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element ref="ref1"/> <xsd:element ref="ref2"/> <xsd:element ref="ref3"/> ...
0
votes
1answer
486 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
2k 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
310 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
637 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
208 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 ...
1
vote
1answer
440 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 ...
3
votes
1answer
6k 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
566 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
648 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
626 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 ...
-1
votes
1answer
818 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 ...
0
votes
2answers
750 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
482 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 ...
3
votes
2answers
2k 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 ...
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 ...