Mega Code Archive

 
Categories / XML Tutorial / XML Schema
 

Use positiveInteger

File: Schema.xml <?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"   targetNamespace="http://www.rntsoft.com"    xmlns="http://www.rntsoft.com"   elementFormDefault="qualified">   <xs:element name="population" type="xs:positiveInteger" /> </xs:schema> File: Data.xml <?xml version="1.0"?> <population xmlns="http://www.rntsoft.com">342</population>