XML/XML Schema/integer — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 11:26, 26 мая 2010

xs:integer is derived from xs:decimal

   <source lang="xml">

File: Data.xml <?xml version="1.0"?>

  1234

File: Schema.xsd

<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"

 targetNamespace="http://www.wbex.ru" xmlns="http://www.wbex.ru"
 elementFormDefault="qualified">
   <xs:element name="data" type="xs:integer"/>

</xs:schema>

</source>