Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: eror validation for namespace

From: Martin Honnen <mahotrash@-----.-->
To: NULL
Date: 2/18/2009 5:10:00 PM
Tatopitta wrote:
> Hi all, it seems a stupid question, but I am stuck in it for hours!
> I have an xml file with a root, namespace definition and children. Only the 
> root has the namespace. Other nodes are without it.
> 
> <ns0:root xmlns:ns0="http://myNamespace">
> <Child1>...</Child1>
> <Child2>...</Child2>
> </ns:root>
> 
> I need to create a schema to validate this xml: if i use TargetNamespace, 
> all the nodes must have the namespace...how can I have my schema?

If you use a targetNamespace and elementFormDefault="unqualified" then 
the schema defines its root element(s) in the targetNamespace while the 
child elements are defined in no namespace:

   <xs:schema
     xmlns:xs="http://www.w3.org/2001/XMLSchema"
     targetNamespace="http://myNamespace"
     elementFormDefault="unqualified">

     <xs:element name="root">
       <xs:complexType>
         <xs:sequence>
           <xs:element name="Child1" type="xs:string"/>
           <xs:element name="Child2" type="xs:string"/>
         </xs:sequence>
       </xs:complexType>
     </xs:element>

   </xs:schema>

-- 

	Martin Honnen --- MVP XML
	http://JavaScript.FAQTs.com/


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