- From: <Brendan_Crowley@DellTeam.com>
- Date: Wed, 23 Mar 2011 10:00:11 +0000
- To: <xmlschema-dev@w3.org>
- Message-ID: <02C93ED8E0C15B49B599E3BE866EED8A0BE10747@EMAX10HMNDC01.EMEA.DELL.COM>
Hi All,
I have an XSD (included below), but the 'è' character (html char: 'è') in the word 'Crèche' (line 6) is causing an problem; the schema fails validation: No external markup declarations present - referenced entity 'è' must be declared.
Please help, how can I do this?
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:types="http://localhost/dropdownvalues.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://localhost/dropdownvalues.xsd" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:simpleType name="WorkplaceDetailsType">
<xs:restriction base="xs:string">
<xs:enumeration value="Office, school, shop, restaurant, hotel -> Office, Meeting room, Library"/>
<xs:enumeration value="Office, school, shop, restaurant, hotel -> Crèche or Day nursery"/>
<xs:enumeration value="Office, school, shop, restaurant, hotel -> Primary or Secondary school"/>
<xs:enumeration value="Office, school, shop, restaurant, hotel -> College or University"/>
<xs:enumeration value="Office, school, shop, restaurant, hotel -> Retail unit or Shopping Centre"/>
<xs:enumeration value="Office, school, shop, restaurant, hotel -> Other"/>
<xs:enumeration value="Other -> Other"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
Thanks,
Brendan
Received on Saturday, 26 March 2011 13:12:49 UTC