Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Using non-native attributes

From: David Morris <dmmorris@-----.--->
To: xmlschema-dev@--.---
Date: 12/6/2004 4:32:00 PM
I am trying to use a non-native schema attribute and it doesn't seem
to work how I thought it would. The only reference with substance I
can find on the subject is Priscilla Walmsley's book Definitive XML
Schema. I am trying to annotate a schema with some custom attributes
to validate an idea and have run into some trouble.

When I edit an XML Schema using WebSphere Development Studio's (WDS)
Schema editor, I get an error "Unknown attribute xxx:yyy". After a lot
of trial and error, I downloaded a similar example from the Definitive
XML Schema Web site. That example (chapter 6 5/6) fails with the same
error (and a missing type). At this point, I have to believe that WDS
is unable to work with non-native attributes.

Here is the example XML Document and XML Schema:

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:doc="http://example.org/doc"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://example.org/doc example0606.xsd">
   <xsd:element name="product" type="xsd:string" 
            doc:description="This element represents a product."/>
</xsd:schema>

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns="http://example.org/doc"
        targetNamespace="http://example.org/doc">
   <xsd:attribute name="description" type="xsd:string"/>
</xsd:schema>

The next thing I tried was to use a Java program to programatically
validate this Schema with the XML Schema Schema. I receive the
fillowing "Caused by: org.xml.sax.SAXParseException: cvc-elt.1: Cannot
find the declaration of element 'xsd:schema'." I can use this same
program to validate conventional XML documents against an XML Schema
and it works fine. I am using Xerces 1.6.2 and JDOM 1.0.  I have tried
using an entity resolver to pick up a local copy of XMLSchema.xsd as
well as from the URL: http://www.w3.org/2001/XMLSchema.xsd.

Here is some of the code:

       SAXBuilder builder =
           new SAXBuilder("org.apache.xerces.parsers.SAXParser", true);
     builder.setEntityResolver(new SchemaLoader());
       builder.setFeature(
           "http://apache.org/xml/features/validation/schema",
           true);
       builder.setProperty(
           "http://apache.org/xml/properties/schema/external-schemaLocation",
           "http://www.w3.org/2001/XMLSchema.xsd");
       Document doc = builder.build(xmlFile);

Thanks for your help,

David Morris


From Christoph@S... Tue Dec 07 11:09:07 2004
Received: from bart.w3.org ([128.30.52.40])


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