Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


specific element vs. generic element with a type attribute

From: "Tolkin, Steve" <Steve.Tolkin@---.--->
To: <xmlschema-dev@--.--->, <xml-dev@-----.---.--->
Date: 3/12/2006 7:43:00 AM
Which is better: using a set of specific elements or a generic element
with a type attribute? 

Here is a snippet of an XML document using the specific elements
approach.
<Fees>
 <OrangeFee><Amount>12.34</Amount><More>...</More></OrangeFee>
 <YellowFee><Amount>56.7</Amount><More>...</More></YellowFee>
</Rate>

Here is a similar document, using a generic element with a type
attribute.  
<Fees>
 <Fee type="Orange"><Amount>12.34</Amount><More>...</More></Fee>
 <Fee type="Yellow"><Amount>56.7</Amount><More>...</More></Fee>
</Rate>

Background:  We are using XML schema to specify the structure of a set
of XML documents.  
The XML is the payload in a web service; it is described by WSDL and
sent using SOAP.  Currently it is just a message; it is not stored in an
XML database.  Currently the XML is written and read using Java.  Schema
validation is only done in test environments, not in production.   Each
type of value is optional, and can occur at most once.  For any omitted
type the Amount is treated as being 0.  All names and examples are
fictional.   The type attribute uses an enumeration.  The XML Schema
fragment for that approach includes something like:
<xs:simpleType name="FeeType">
  <xs:restriction base="xs:string">
    <xs:enumeration value="Orange"/>
    <xs:enumeration value="Yellow"/>
  </xs:restriction>
</xs:simpleType>

Questions:
The names "set of explicit elements" and "generic element with a type
attribute" are clear but verbose. 
Q1a. Is there a generally accepted way to refer to these approaches? 
Q1b. What other names are (or have been) commonly used? 

Q2. Is there an already existing writeup that discusses the pro's and
con's of each approach?
(This seems analogous to the elements vs. attributes discussion.)

Differences:
Here are some differences between the approaches.  However, it is not
clear how much these actually matter.

Benefits of the specific element approach:
* Allows schema to enforce at most one occurrence.  
* Allows schema to enforce sequence.
* Allows schema to have different annotation, e.g. documentation, for
each different type.
* Allows different types to have different default values.

Benefits of the specific element approach:
* Is slightly easier to define the XML schema
* Is slightly easier to modify the XML scheme, e.g., to add a new type

However there may be other considerations, and some may be more
important than these.
Q3. Which requires less code to implement?  (Is this different for write
vs. read?)

Q4. Which has less impact to the code after adding a new type.
(However, adding new types will be rare.)  

Q5. Which has been performance?

Q6. To ease the burden on the reading code we might want to always have
a value for each type, populating the Amount element with 0.  Is this a
good idea?  Does this affect the best way to represent this information?


Thanks,
Steve
---
Steven Tolkin 
There is nothing so practical as a good theory.  Comments are by me, not
Fidelity Investments, its subsidiaries or affiliates.


From petexmldev@t... Sun Mar 12 20:13:51 2006
Received: from lisa.w3.org ([128.30.52.41])
	by frink.w3.org w


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent