44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?> 
 | |
| <!-- Sample XML Document --> 
 | |
| <nsp:personnel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | |
|    xsi:schemaLocation="http://www.pok.xyz.com XMLSample.xsd" xmlns:nsp="http://www.pok.xyz.com">
 | |
|    <person id="Boss" >
 | |
|       <nss:name xmlns:nss="http://www.svl.xyz.com">
 | |
|          <nsp:family>Smith</nsp:family>
 | |
|          <nss:given>Bill</nss:given>
 | |
|       </nss:name>
 | |
|       <email>smith@foo.com</email>
 | |
|       <YearsOfService>20</YearsOfService>
 | |
|       <weight>175.4</weight>
 | |
|       <birthday>1955-03-24</birthday>
 | |
|       <nsp:link nsp:subordinates="worker"/>
 | |
|    </person>
 | |
|   
 | |
|    <person xmlns="http://www.dft1.xyz.com" id="worker">
 | |
|       <name>
 | |
|          <family xmlns="http://www.dft2.xyz.com">Jones</family>
 | |
|          <given xmlns="">Bill</given>
 | |
|       </name>
 | |
|       <email>jones@foo.com</email>
 | |
|       <YearsOfService>15</YearsOfService>
 | |
|       <weight>175.4</weight>
 | |
|       <birthday>1968-07-16</birthday>
 | |
|       <link manager="Boss"/>
 | |
|    </person>
 | |
|    <person id="worker">
 | |
|       <name xmlns:nsp="http://www.abc.xyz.com">
 | |
|          <nsp:family>Jones</nsp:family>
 | |
|          <given>Sam</given>
 | |
|       </name>
 | |
|       <email>sjones@foo.com</email>
 | |
|       <YearsOfService>20</YearsOfService>
 | |
|       <weight>189.2</weight>
 | |
|       <birthday>1959-01-26</birthday>
 | |
|       <link manager="Boss"/>
 | |
|    </person>
 | |
| </nsp:personnel>
 | |
| <!--
 | |
|    was originally in front of the second person... has to be changed.. otherwise false gramme step.. to check!!! 
 | |
|    A second comment in this Sample XML Document
 | |
| -->
 | 
