472,958 Members | 1,946 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,958 software developers and data experts.

Parsing XML Schema's

Hello -

I am trying to parse a .XSD file to obtain information about element
name and type in the file. I have been trying to find some kind of
documentation for Schema Parsing. All I come across is documentation
for validating XML files against XSD files. Is ther any way to parse
the XSD file itself? Any help will be appreciated.

Thanks for your time.

Regards,
-Pushya
Jul 20 '05 #1
4 7189


Pushya wrote:
I am trying to parse a .XSD file to obtain information about element
name and type in the file. I have been trying to find some kind of
documentation for Schema Parsing. All I come across is documentation
for validating XML files against XSD files. Is ther any way to parse
the XSD file itself? Any help will be appreciated.


MSXML and MS .NET implement a schema object model I think, check
http://msdn.microsoft.com/library/de...rview_73g7.asp
http://msdn.microsoft.com/library/de...rence_3ig5.asp

I think Xerces from xml.apache.org also implements some grammar (schema)
object model.
--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 20 '05 #2
Ray
Hi Martin,

do you mean the xmlbeans by apache.org or any other (java) xml binding
frameworks? I'm looking for the same facility
in order to manipulate a dom tree, e.g. adding child nodes to a node
with the rigth types, so that the xml or dom stays valid.

It would be the best if there exists methods that there are methods
handling this by themselves. For example: If a valid xml looks like:

<book>
<title>XML in a Nutshell</title>
<author>Author's Name</title>
<publisher></publisher>
<price>39.99</price>
</book>

and assuming the publisher title does not exist yet. Now I would
like to add the publisher tag including content to the dom tree or
xml.
This should be done by the add method, knowing that it has to add the
tag between author and price. Ok, in this
example the order is not relevant, but in other cases it is and the
right order and should be preserved according
to the schema.

Are they any tools or frameworks (preferable to use with java), that
can handle this. I think it would be possible with
java xml binding frameworks like castor or jaxb but at the moment i
would prefer to access directly the dom.

Thanks!

Regards
Ray
Martin Honnen <ma*******@yahoo.de> wrote in message news:<40********@olaf.komtel.net>...
Pushya wrote:
I am trying to parse a .XSD file to obtain information about element
name and type in the file. I have been trying to find some kind of
documentation for Schema Parsing. All I come across is documentation
for validating XML files against XSD files. Is ther any way to parse
the XSD file itself? Any help will be appreciated.


MSXML and MS .NET implement a schema object model I think, check
http://msdn.microsoft.com/library/de...rview_73g7.asp
http://msdn.microsoft.com/library/de...rence_3ig5.asp

I think Xerces from xml.apache.org also implements some grammar (schema)
object model.

Jul 20 '05 #3


Ray wrote:

do you mean the xmlbeans by apache.org or any other (java) xml binding
frameworks? I'm looking for the same facility
in order to manipulate a dom tree, e.g. adding child nodes to a node
with the rigth types, so that the xml or dom stays valid.

It would be the best if there exists methods that there are methods
handling this by themselves. For example: If a valid xml looks like:

<book>
<title>XML in a Nutshell</title>
<author>Author's Name</title>
<publisher></publisher>
<price>39.99</price>
</book>

and assuming the publisher title does not exist yet. Now I would
like to add the publisher tag including content to the dom tree or
xml.
This should be done by the add method, knowing that it has to add the
tag between author and price. Ok, in this
example the order is not relevant, but in other cases it is and the
right order and should be preserved according
to the schema.

Are they any tools or frameworks (preferable to use with java), that
can handle this. I think it would be possible with
java xml binding frameworks like castor or jaxb but at the moment i
would prefer to access directly the dom.


DOM Level 3 validation has methods to help you edit a document compliant
to a schema. I am not sure when/whether Xerces intends to support that.

--

Martin Honnen
http://JavaScript.FAQTs.com/

Jul 20 '05 #4
fi********@hotmail.com (Pushya) writes:
I am trying to parse a .XSD file to obtain information about element
name and type in the file. I have been trying to find some kind of
documentation for Schema Parsing. All I come across is documentation
for validating XML files against XSD files. Is ther any way to parse
the XSD file itself? Any help will be appreciated.


If you're a Python user, XSV [1] exposes its schema data model.

ht

[1] http://www.ltg.ed.ac.uk/~ht/xsv-status.html
--
Henry S. Thompson, HCRC Language Technology Group, University of Edinburgh
Half-time member of W3C Team
2 Buccleuch Place, Edinburgh EH8 9LW, SCOTLAND -- (44) 131 650-4440
Fax: (44) 131 650-4587, e-mail: ht@inf.ed.ac.uk
URL: http://www.ltg.ed.ac.uk/~ht/
[mail really from me _always_ has this .sig -- mail without it is forged spam]
Jul 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ewan B | last post by:
Hi, I'm using Xerces to parse XML files using SAX2, and am wondering if there is any information as to what exceptions are being thrown when certain validation errors occur. Taking a simple...
2
by: Christophe Vanfleteren | last post by:
Hello, I'm parsing xml that is returned by the Amazon webservices (using their REST interface). Their dev-heavy.xsd has the following entry: <xs:element name="Track"> <xs:complexType>...
2
by: Cigdem | last post by:
Hello, I am trying to parse the XML files that the user selects(XML files are on anoher OS400 system called "wkdis3"). But i am permenantly getting that error: Directory0: \\wkdis3\ROOT\home...
0
by: Pentti | last post by:
Can anyone help to understand why re-parsing occurs on a remote database (using database links), even though we are using a prepared statement on the local database: Scenario: ======== We...
2
by: Mike | last post by:
Hi! I have an Excel 2003 Schema I need to parse to extract elements names. I am puzzled which System.Xml object can help me. Here's the example of my schema: I need to get a collection of...
8
by: pradeepsarathy | last post by:
Hi all, Does the SAX parser has eventhandlers for parsing xml schema. Can we parse the xml schema the same way as we parse the xml document using SAX Parser. Thanks in advance. -pradeep
1
by: christian.eickhoff | last post by:
Hi, I have a general question regarding the parsing of XSD files, referenced within the namespace using Apache Xerces 2.7.0 (CDT). My current c++ application can parse and validate an XML file...
1
by: padmagvs | last post by:
I am working on some code which parses wsdl . I have a complex wsdl which is failing to parse . I have to modify this wsdl for parsing . wanted to know the complex wsdl i am using is as per...
1
by: JJadhav | last post by:
I have written the following schema file: <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.abc.com/DDSchema" targetNamespace="http://www.abc.com/DDSchema"...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.