Tagged Questions
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
414 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 ...
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
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
422 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
414 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 ...