Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [Newbie] XSD Validation for xml

From: Martin Honnen <mahotrash@-----.-->
To: NULL
Date: 10/10/2009 12:51:00 PM
apolloj wrote:

> <xsd:schema xmlns=""
>             xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>             targetNamespace="">
>     
>     <xsd:element name="description" type="xsd:string"/>
> 
>  <xsd:element name="services-test" type="xsd:string"/>

Here you are defining the element services-test to have the type xsd:string.


> <services-test>
>   <mat name="MAN">
>     <description>mat</description>

yet here you give the element services-test child elements. If the type 
is xsd:string then the element is not allowed any child elements, it can 
only have text contents.

You probably want to give the services-test element one of the complex 
types you have defined in your schema e.g.
   <xsd:element name="services-test" type="services-test"/>
as the complex type named services-test is defined in your schema.

-- 

	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/


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