OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

What is wrong with my include element?



Hi all,
i wrote one schema-file:ArticleMaDaSch.xsd.Within this
file i defined one type:ActionCodeType. Now i want to
use that type in another file:ArtikelLagerPlatzT.xsd.
The targetNamespace are the same in both files.I use
the IBM XML SchemaQualityChecker to check errors.
Despite the include element in the file
ArtikelLagerPlatzT.xsd the SchemaQualityChecker don't
accept the attribut value of the schemaLocation
attribut and of course don't know the element
ActionCodeType i want to use. What am i doing wrong ?
Here are the files:

ArticleMaDaSch.xsd:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	    targetNamespace="http://www.telegrammes.org"
            xmlns:ASD="http://www.telegrammes.org"
            elementFormDefault="qualified">
 
<xsd:element name="articleMasterData"
type="ASD:ArticleMasterDataType"/>
 <xsd:element name="comment" type="xsd:string"/>
 <xsd:complexType name="ArticleMasterDataType">
  <xsd:sequence>
   <xsd:element name="telegramNumber"
type="xsd:integer" fixed="001100"/>
   ...

   <xsd:element name="actionCode"
type="ASD:actionCodeType"/>
   </xsd:sequence>
 </xsd:complexType>     
   
 <xsd:simpleType name="actionCodeType">	
  <xsd:restriction base="xsd:integer">
    <xsd:enumeration value="1"/>
    <xsd:enumeration value="2"/>
    <xsd:enumeration value="3"/>
  </xsd:restriction>
 </xsd:simpleType>
  
</xsd:schema>
  
and the ArtikelLagerPlatzT.xsd

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	    targetNamespace="http://www.telegrammes.org"
            xmlns:ALT="http://www.telegrammes.org"
	    elementFormDefault="qualified">

<xsd:include
schemaLocation="http://www.telegrammes.org
ArticleMaDaSch.xsd"/>
 
 <xsd:element name="articleBinLocationType"
type="ALT:ArticleBinLocationType"/>
 <xsd:element name="comment" type="xsd:string"/>
 <xsd:complexType name="ArticleBinLocationType">
  <xsd:sequence>
...
 <xsd:element name="actionCode"
type="ALT:actionCodeType"/>
 </xsd:sequence>
 </xsd:complexType>     
   
</xsd:schema>

thanks for help
oumar.

__________________________________________________________________
Do You Yahoo!?
Gesendet von Yahoo! Mail - http://mail.yahoo.de