Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
24-18.xsd
Upload User: shuxianled
Upload Date: 2007-01-18
Package Size: 6404k
Code Size: 2k
Category:
xml-soap-webservice
Development Platform:
Others
- <?xml version="1.0"?>
- <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <xsd:element name="SONG" type="SongType"/>
- <xsd:simpleType name="money">
- <xsd:restriction base="xsd:string">
- <xsd:pattern value="p{Sc}p{Nd}+(.p{Nd}p{Nd})?"/>
- <!--
- Regular Expression:
- p{Sc} Any Unicode currency indicator;
- e.g., $, ¥, £, &#A4, etc.
- p{Nd} A Unicode decimal digit character
- p{Nd}+ One or more Unicode decimal digits
- . The period character
- (.p{Nd}p{Nd})
- (.p{Nd}p{Nd})? Zero or one strings of the form .35
- This works for any decimalized currency.
- -->
- </xsd:restriction>
- </xsd:simpleType>
- <xsd:complexType name="SongType">
- <xsd:sequence>
- <xsd:element name="TITLE" type="xsd:string"/>
- <xsd:element name="COMPOSER" type="PersonType"
- maxOccurs="unbounded"/>
- <xsd:element name="PRODUCER" type="PersonType"
- minOccurs="0" maxOccurs="unbounded"/>
- <xsd:element name="PUBLISHER" type="xsd:string"
- minOccurs="0"/>
- <xsd:element name="LENGTH" type="xsd:duration"/>
- <xsd:element name="YEAR" type="xsd:gYear"/>
- <xsd:element name="ARTIST" type="xsd:string"
- maxOccurs="unbounded"/>
- <xsd:element name="PRICE" type="money" maxOccurs="1"/>
- </xsd:sequence>
- </xsd:complexType>
- <xsd:complexType name="PersonType">
- <xsd:sequence>
- <xsd:element name="NAME">
- <xsd:complexType>
- <xsd:all>
- <xsd:element name="GIVEN" type="xsd:string"/>
- <xsd:element name="FAMILY" type="xsd:string"/>
- </xsd:all>
- </xsd:complexType>
- </xsd:element>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:schema>