39 lines
1002 B
XML
39 lines
1002 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<person xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="person.xsd" age="12">
|
|
<?NAME Attributes-List ?>
|
|
<!-- 1st Comment -->
|
|
<firstname>Daniel</firstname>
|
|
<!--undefined="true" -->
|
|
<lastname>Peintner<!-- 2nd Comment --></lastname>
|
|
|
|
<telephone>
|
|
<mobile>0173 111111</mobile>
|
|
</telephone>
|
|
<!-- recursion!!! -->
|
|
<info>
|
|
<text>
|
|
<info>
|
|
<text>
|
|
<info/>
|
|
</text>
|
|
<sss>AAA gonz a komischo Schas!</sss>
|
|
</info>
|
|
</text>
|
|
<sss>ss</sss>
|
|
</info>
|
|
<!-- no amol a kommentar -->
|
|
|
|
</person>
|
|
<!-- 3rd Comment , before telephone doesnt work !?!?-->
|
|
<!--
|
|
<secondRoot xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="person.xsd">
|
|
dasdsadsa
|
|
</secondRoot>
|
|
-->
|
|
<!--
|
|
<![CDATA[Hello this is the content of a CDATA section]]>
|
|
|
|
-->
|