Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re:Validating XML documents containing xml:*

From: Jack Lindsey <Jack@-------.--->
To: xml-dev@-----.---.---
Date: 11/8/2005 3:53:00 AM
For the instance files to validate, your schema needs to define where 
xml:* attributes are permitted. 

In order to reference xml:lang, etc., in your schema, you have to import 
the following W3C namespace:

<xs:import namespace="http://www.w3.org/XML/1998/namespace"
schemaLocation="http://www.w3.org/2001/xml.xsd"/>

where the world's most famous attributeGroup is defined:

<xs:attributeGroup name="specialAttrs">
<xs:attribute ref="xml:base"/>
<xs:attribute ref="xml:lang"/>
<xs:attribute ref="xml:space"/>
</xs:attributeGroup>


using the W3C-reserved namespace prefix:  xml

In order for instance files referencing your schema to use xml:lang they 
must include the W3C's xsi namespace but the associated target schema is 
yours, e.g.

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://yourTargetSchema/namespace 
optionally/yourLocalschema.xsd"

What could be simpler?

Also try this list:  <xmlschema-dev@w...>

Cheers
             Jack Lindsey


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