fix the xml files

This commit is contained in:
Andreas Zweili 2017-05-09 20:01:10 +02:00
parent 56330b3691
commit b6c6608ebc
2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<note xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xsd:noNamespaceSchemaLocation="aufgabe6.xsd">
<note xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="aufgabe6.xsd">
<to>Me</to>
<from>You</from>
<heading>Reminder</heading>

View File

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<employee xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xsd:SchemaLocation="aufgabe6b.xsd">
<employee xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="aufgabe6b.xsd">
<empNumber>1234</empNumber>
<firstname>Max</firstname>
<lastname>Muster</lastname>
<dateOfBirth>30.08.1010</dateOfBirth>
<firstName>Max</firstName>
<lastName>Muster</lastName>
<dateOfBirth>1010-08-30</dateOfBirth>
<department>Marketing</department>
<salary>50000</salary>
</employee>