Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: Tagging the remainder of a body

From: "Pete Cordell" <petexmldev@--------------.--->
To: "Paul B. Monday" <Paul.Monday@---.--->, <xmlschema-dev@--.--->
Date: 2/14/2006 8:49:00 AM
Hi Paul,

As you are no doubt aware, XSD alone isn't able to select different valid 
paths through an XML instance based on the value of an element body, or 
indeed that of an attribute.  The only forks in the road so to speak are 
with element names.

Looking at your examples, it would appear you can just get rid of the <type> 
element and have the <event> and <contact-information> be part of a choice 
in the schema.  Then you'd get something like:

 <message>
    <event>
       <stuff></stuff>
    </event>
 </message>

 <message>
    <contact-information>
       <address></address>
    </contact-information>
 </message>

Alternatively, if you really want a type element (as your e-mail suggests), 
you could do:

 <message>
    <type>
       <event>
          <stuff></stuff>
       </event>
    </type>
 </message>

 <message>
    <type>
       <contact-information>
          <address></address>
       </contact-information>
    </type>
 </message>

If neither of these are OK, then from what I've heard on this list, you'll 
need something like Schematron to impose the constraints (I'm afraid I 
haven't had the chance to get round to using it myself.)

HTH,

Pete.
----- Original Message ----- 
From: "Paul B. Monday" <Paul.Monday@S...>
To: <xmlschema-dev@w...>
Sent: Tuesday, February 14, 2006 4:12 AM
Subject: Tagging the remainder of a body


>
> I'm trying to leave a "type" tag in a body that determines the latter half 
> of an XML instance.  I can't find a decent way to do this but am thinking 
> I'm tackling the problem wrong from the outset.  Basically, I want to be 
> able to enforce that if a type is "Event", the latter half of the message 
> has an event but if the type is "Contact", the latter half of the message 
> has contact information...like this:
>
> <message>
>    <type>Event</type>
>    <event>
>       <stuff></stuff>
>    </event>
> </message>
>
> <message>
>    <type>Contact</type>
>    <contact-information>
>       <address></address>
>    </contact-information>
> </message>
>
>
> Am I approaching this wrong for XML?  Is there anyway to constrain the 
> following nodes like this?  selector, nor choice seem to allow this 
> linkage to occur...I'm not necessarily "new" to schema, but neither am I 
> "advanced" in schema...so apologies if this question seems naive...
>
> Paul Monday
> Sun Microsystems
>
--
=============================================
Pete Cordell
Tech-Know-Ware Ltd
                         for XML to C++ data binding visit
                         http://www.tech-know-ware.com/lmx
                         (or http://www.xml2cpp.com)
=============================================



From george@o... Tue Feb 14 09:33:19 2006
Received: from maggie.w3.org ([193.51.208.68])
	by frink.w3.org with esmtp (Exim 4.50)
	


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