30/09/2018, 20:03

Hỏi về XML Schema

Mình muốn biểu diễn một File XMl bằng Schema như thế này

<?xml version="1.0"?>

<student xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="schema.xsd">
	<name isSpecial="1">Tran Duc Duong</name>
	<age>22</age>
</student>

file xsd

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
	<xs:element name="student">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="name" type="xs:string">
					<xs:complexType mixed="true">
						<xs:attribute name="isSpecial" type="xs:integer" />
					</xs:complexType>
				</xs:element>
				<xs:element name="age" type="xs:int"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
</xs:schema>

Nhưng nó liên tục báo lỗi khi biểu diễn <name isSpecial="1">Tran Duc Duong</name> mong các cao thủ giúp đỡ . ức chế quá .

Bài liên quan
0