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

Elements vs. attributes was: Are people really using Identity constrain


elements of state
 Michael Kay wrote:
 > Incidentally, it happens less often nowadays, but
 > just yesterday I made an online purchase from a
 > US supplier who required me to enter a two-letter
 > code in the "State" box and a numeric value in the
 > "postal code" box, despite the fact that I had
 > entered UK as the country; so of course I lied,
 > and they now have my state recorded as "ZZ" and
 > the postal code as 12345. They also required a
 > ten-digit phone number. Which reinforces another
 > of my arguments: the more validation you do, the
 > more you force people to supply incorrect information.

I believe this makes a good point for understanding the differences between
the use of elements vs. attributes.
(not trying to start a holy war here, trying to make a contextual point)

My use of attributes is only as needed to "scope" one or more elements with
a variant theme.  Whereas element laden folks might write something like
this:

<address>
    <street />
    <city />
    <state />
    <zipCode />
    <country />
</address>

Or the attribute laden result (to save space on the wire, presumably):

<address street = "714 my Street" city="my City" state="my State"
zipcode="00666" country="us" />

Which is a rigid (and USA is the only address type - how arrogant)
structure. Probably one of those IT folks who wrote the schema while their
business analyst was getting requirements.

But the flexibility of XML is that it can be heterogenous. . . and how to
understand when you will get what structure is the purpose of attributes. .
. so the more context sensitive XML modeler (who understands the
requirements first) might use:

<address country="us">
    <street />
    <city />
    <state />
     <zipCode />
</address>

for US address, and the the following for UK addresses:

<address country="uk">
   <buildingName />
   <street />
   <city />
   <postalCode />
</address>

I am not aware of a way to use Schema to enforce a substructure based on a
value in an attribute, but from the short look at CAM that I have done, this
seems to be exactly what it was designed to do. . . combine snippets of
variants together into a complete document that is very context aware.
David, did I get that right?

Owen
XMS -  a self constructing transactional XML management system.
No DBA required! Download it for free today:
http://xpriori.com/developers/html/downloads.html


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.