RE: [xml-dev] Problems with schema creation, help!!

From
Rayner, Chris <>
To
"''" <>, "''" <>
Date
2004-02-04T16:21:12Z
ID
<000035f20339aa07d4@[208.238.11.153]>
Thread
RE: [xml-dev] Problems with schema creation, help!!

I'll grab an eval copy off their site and give that a go - any specific hints on how to tell XML spy what I'm trying to achieve?

Cheers

-----Original Message-----
From: Nicolas Toper [mailto:[email protected]]
Sent: 04 February 2004 16:09
To: Rayner, Chris
Subject: Re: [xml-dev] Problems with schema creation, help!!


Use XML Spy :=) It'll do it for you
Le Mercredi 04 Février 2004 16:59, Rayner, Chris a écrit :
> I have XML of a structure similar to this:
>
> <code>
>   ...
>   <party>
>       <name>blah</name>
>       <account>blah blah</account>
>   </party>
>   ...
>   <party>
>       <name>deBlah</name>
>       <account>deBlah deBlah</account>
>   </party>
>    ...
> </code>
>
> and I need to build a schema that can enforce the following rules on the
> <party> element:
>   - <party> can be in any position under the <code> element
>   - <party> can occur either 0, 1 or 2 times
>
> I wanted initially to use the all compositor but this will only allow 0 or
> 1 instances of <party> under <code>. Does any one have any insights into
> how this can be achieved?
>
> Thanks!
>
> Chris