[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: What is wrong with my include element?
- From: Priscilla Walmsley <priscilla@walmsley.com>
- To: 'Auguste Oumar' <oumar_a@yahoo.de>, xml-dev@lists.xml.org
- Date: Fri, 07 Sep 2001 10:51:45 -0400
Hello,
The problem is that you have the namespace name in your schemaLocation.
This is only done in instance documents. In includes, you only need to
specify the location of the other schema document.
Try just using:
<xsd:include schemaLocation="ArticleMaDaSch.xsd"/>
Hope that helps,
Priscilla
-----------------------------------------------------------
Priscilla Walmsley priscilla@walmsley.com
Architect, Vitria Technology http://www.vitria.com
Author, Definitive XML Schema (Prentice Hall, Dec. 2001)
-----------------------------------------------------------
> -----Original Message-----
> From: Auguste Oumar [mailto:oumar_a@yahoo.de]
> Sent: Friday, September 07, 2001 8:42 AM
> To: xml-dev@lists.xml.org
> Subject: 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
>
> -----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
>
> The list archives are at http://lists.xml.org/archives/xml-dev/
>
> To subscribe or unsubscribe from this elist use the subscription
> manager: <http://lists.xml.org/ob/adm.pl>
>