hi all,
this is my xsd
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="car">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Audi"/>
<xs:enumeration value="Golf"/>
<xs:enumeration value="BMW"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:schema>
from XML Schema Explorer i right click on <>Car and click on generate sample xml file option there its not gave Audi, Golf and BMW instaed its showing first element as "Audi", like below
<?xml version="1.0" encoding="utf-8"?>
<car>Audi</car>
why its not showing all 3 data?, wat to do come all 3 data?
Thanks In Advance, Jeyaseelan