[
Lists Home |
Date Index |
Thread Index
]
- To: <xml-dev@lists.xml.org>
- Subject: XML schema user defined simpletype with case insensitiveness
- From: "Baisak, Ranjan" <ranjan_baisak@mentorg.com>
- Date: Tue, 28 Dec 2004 20:40:21 +0530
- Thread-index: AcTs3W8A36KeXSzDRJ2Z5lJj6K1L6AAEUobQ
- Thread-topic: XML schema user defined simpletype with case insensitiveness
Just a thought of exploration, I am using a user defined simple type in
my schema
<xsd:simpleType name="VehicleType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="New"/>
<xsd:enumeration value="Current"/>
<xsd:enumeration value="Obsolete"/>
</xsd:restriction>
</xsd:simpleType>
Here I want "VehicleType" shoould be case insensitive. So "nEw" or "neW"
should be valid.
The work around is I can push all the enumeration but the enumeration
list would be fair long.
SO any suggestion to make a simple type with case insensitiveness,
regards,
-Ranjan
|