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

Re: Why unqualified? (was RE: ANN: SAX Filters for NamespaceProcessing)

  • From: Ronald Bourret <rpbourret@r...>
  • To: xml-dev@l...
  • Date: Wed, 01 Aug 2001 15:49:13 -0700

ann sax
Sean McGrath wrote:
> >The serialization of objects and structures is a real reason.
> 
> Hmm. Could you give an example?

XML data binding products often generate code for classes from an XML
Schema or vice versa. If you can have unqualified (or even locally
defined) children, then generating an XML Schema from a graph of class
definitions is easy in that you don't have to worry about element name
collisions.

For example, suppose you have two classes:

class foo        class bar
{                {
   int x;           String x;
   int y;           String y;
   bar b;        }
}

The existence of local element types means you can serialize objects
from these classes as:

   <foo>
      <x>...</x>
      <y>...</y>
      <bar>
         <x>...</x>
         <y>...</y>
      </bar>
   </foo>

The problem with local element types is that, once an element of the
type is taken out of its containing element, it can't be identified.
Allowing the child element names to be unqualified just exacerbates
(sp?) the problem.

What I can't understand about both is whether they solve any technical
problems. As far as I can tell, the only problems they solve are
aesthetic, since the objects could just as easily have been serialized
as:

   <foo>
      <foo-x>...</foo-x>
      <foo-y>...</foo-y>
      <bar>
         <bar-x>...</bar-x>
         <bar-y>...</bar-y>
      </bar>
   </foo>

-- Ron

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.