[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: XML Schemas: ref'ing versus in-lining

  • From: "Arnold, Curt" <Curt.Arnold@h...>
  • To: "'Roger L. Costello'" <costello@m...>
  • Date: Wed, 13 Sep 2000 12:31:55 -0600

schema ref versus type
The big difference is that by declaring an element as a top-level element, it can be used in other contexts, either as a top-level element in an instance or imported into schemas for other namespaces.
For example,

<b xmlns="http://www.example.org/namespace/b"
   xmlns:a="http://www.example.org/namespace/a">
   <a:bar>foo</a:bar>
</b>

is legal for your first fragment, but not for your second.  In the first example, your element has global (better namespace) scope.  In the second, it has local scope.  If you search the XML Schema
Part 1 document for "scope", you will see a whole lot of text on the distinctions.

When elements are defined in the scope of a complex type, they are reachable only within that complex type.

From Part 1, Section 2.5:

Locally scoped attribute and element declarations are special with regard to symbol spaces. Every complex type definition defines its own local attribute and element declaration symbol spaces, where
these symbol spaces are distinct from each other and from any of the other symbol spaces. 

This statement makes:

     <element name="foo"> 
        <complexType>
           <element name="bar" type="string"/>
           <element name="bar" type="string"/>
        </complexType>
     </element>

illegal (regardless of the value of type) since you have duplicate declarations of the same element name within the same symbol space.  Though it is concievable that you could have sub-symbol spaces
within a complex type (a symbol space for each group, for example) and intra-complex type references to locally-scoped elements, I can't see that as being justified at this point.

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
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.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.