|
[XML-DEV Mailing List Archive Home]
[By Thread]
[By Date]
[Recent Entries]
[Reply To This Message]
RE: Schema validation of recursive structures

|
Recursive structures are certainly possible in
schemas. A common example would be recursive <section> elements, say
with a title and one or more paras and zero or more
sections.
Here's a DTD sample:
<!ELEMENT section (title , para+ , section*)
>
Here's a Schema sample:
<xsd:element
name="section">
<xsd:complexType>
<xsd:sequence>
<xsd:element
ref="title"/> <xsd:element
ref="para"
maxOccurs="unbounded"/> <xsd:element
ref="section" minOccurs="0"
maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
The minOccurs and maxOccurs of course can be further
defined.
Hello to
everyone,
I have a
problem and I don't know how solved it.
I need
validates a node seem at this:
<root>
<A>
<element1/>
<element2/>
<A>
<element1/>
<element2/>
<element3/>
<A>
<element1/>
<A>
<A>
</A>
</root>
The node A
shall have sub items of itself, is it
possible?
Thank's
Alessandro
de A. Barbosa
System Developer
Fundação
Des. Paulo Feitoza - Manaus - AM
Mobile : 8125
- 7719
Business
Phone: 55 92 614-9797
Msn:
alessandrovila@h...
ICQ: 241240451;
Status: 
--- Outgoing mail is certified Virus Free. Checked by AVG
anti-virus system (http://www.grisoft.com). Version: 6.0.837 / Virus
Database: 570 - Release Date: 17/1/2005
|

|
PURCHASE STYLUS STUDIO ONLINE TODAY!
Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!
Download The World's Best XML IDE!
Accelerate XML development with our award-winning XML IDE - Download a free trial today!
Subscribe in XML format
| RSS 2.0 |
 |
| Atom 0.3 |
 |
| |
Stylus Studio has published XML-DEV in RSS and ATOM formats,
enabling users to easily subcribe to the list from their preferred news reader application.
|
Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website.
they were not included by the author in the initial post. To view the content without the Sponsor Links please
click here.
|
|