OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: DTD Question

[ Lists Home | Date Index | Thread Index ]
  • From: "Anders W. Tell" <anderst@toolsmiths.se>
  • To: "Samuel R. Blackburn" <sblackbu@erols.com>
  • Date: Fri, 16 Oct 1998 14:27:09 +0200

"Samuel R. Blackburn" wrote:

> I just attended a briefing about XML. One of the things
> that struck me was, if I understand the presenter, DTD
> thinks the world is flat. Is it possible for DTD to describe
> elements of the same name but have different meaning?
>
> Consider the following:
>
> <NAME>
>   <FIRST>Sam</FIRST>
>   <LAST>Blackburn</LAST>
> </NAME>
> <ROUTE>
>    <FIRST>99.409</FIRST>
>    <LAST>2091.7785</LAST>
> </ROUTE>
>
> Is it possible in DTD to say that NAME.FIRST is a string
> and ROUTE.FIRST is a number?
>
> TIA,

There are at least two ways of solving this type of problems
which arise when trying to "encode" C/C++/Corba/RPC
data structures in XML.

Example:

struct NAME {
    char     FIRST[10];
    char     LAST[10];
}
struct ROUTE {
    char     FIRST[10];
    char     LAST[10];
}

** 1 **
<NAME>
   <NAME_FIRST>Sam</NAME_FIRST>
   <NAME_LAST>Blackburn</NAME_LAST>
</NAME>
<ROUTE>
    <ROUTE_FIRST>99.409</ROUTE_FIRST>
    <ROUTE_LAST>2091.7785</ROUTE_LAST>
</ROUTE>

Now the NAME's and LAST's have different definitions and may
be handle differently the applications.Still the DTD does don recognise
the datatype difference.

** 2 **
<NAME>
   <string name="NAME">Sam</string>
   <string name="LAST">Blackburn</string>
</NAME>
<ROUTE>
    <number name="FIRST" value="99.409" />
    <number name="LAST" value="2091.7785" />
</ROUTE>

Here you have both names and datatypes available in a simple manor,
with no name clashing and and DTD that handles datatypes.
This is what I personally use for primitive datatype which cannot be
divided.

Best
/Anders
--
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
/  Financial Toolsmiths AB  /
/  Anders W. Tell           /
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/



xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To (un)subscribe, mailto:majordomo@ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)


  • References:
    • DTD Question
      • From: "Samuel R. Blackburn" <sblackbu@erols.com>



 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS