-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXmltest.xml
120 lines (75 loc) · 1.61 KB
/
Xmltest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="UTF-8"?>
<Institution>
<Department>
<DName> Physics </DName>
<Intake> 50 </Intake>
</Department>
<Department>
<DName> Computer </DName>
<Intake> 80 </Intake>
</Department>
<Department>
<DName> Commerce </DName>
<Intake> 40 </Intake>
</Department>
<Student>
<Name> Tony Stark </Name>
<Ssn> 12312 </Ssn>
<DName> Computer </DName>
</Student>
<Student>
<Name> Steve Rogers </Name>
<Ssn> 93605 </Ssn>
<DName> Commerce </DName>
</Student>
<Student>
<Name> Murdoch </Name>
<Ssn> 83171 </Ssn>
<DName> Physics </DName>
</Student>
<Student>
<Name> Bruce Wayne </Name>
<Ssn> 80337 </Ssn>
<DName> Computer </DName>
</Student>
<Student>
<Name> Peter Parker </Name>
<Ssn> 54370 </Ssn>
<DName> Physics </DName>
</Student>
<Student>
<Name> Hank McCoy </Name>
<Ssn> 49073 </Ssn>
<DName> Computer </DName>
</Student>
<Employee>
<EmpID> 41 </EmpID>
<Ename> Bruce Banner </Ename>
<Salary> 35000 </Salary>
<DName> Physics </DName>
</Employee>
<Employee>
<EmpID> 2 </EmpID>
<Ename> Lucius Fox </Ename>
<Salary> 50000 </Salary>
<DName> Computer </DName>
</Employee>
<Employee>
<EmpID> 24 </EmpID>
<Ename> Charles Xavier </Ename>
<Salary> 32000 </Salary>
<DName> Physics</DName>
</Employee>
<Employee>
<EmpID> 37 </EmpID>
<Ename> William Stryker </Ename>
<Salary> 22000 </Salary>
<DName> Commerce</DName>
</Employee>
<Employee>
<EmpID> 12 </EmpID>
<Ename> Anton Vanko </Ename>
<Salary> 34000 </Salary>
<DName> Physics</DName>
</Employee>
</Institution>