Olumide wrote:
> Would this be the proper method of declaring an XML element Foo that
> cannot have a child element or other content?
>
> <xs:element name="Image" type="xs:string" fixed="" nillable="true" />
>
> The valid uses of this element in an XML document would be:
>
> <Foo></Foo>
> <Foo />
>
> Anything else would be invalid, e.g.:
>
> <Foo>stuff</Foo>
Well if you put 'nillable="true"' on the element then valid markup also is
<Foo xmlns

si="http://www.w3.org/2001/XMLSchema-instance"
xsi:nil="true"/>
--
Martin Honnen --- MVP Data Platform Development
http://msmvps.com/blogs/martin_honnen/