-
Notifications
You must be signed in to change notification settings - Fork 1
/
Order.xml
43 lines (33 loc) · 908 Bytes
/
Order.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
<?xml version="1.0" encoding="iso-8859-1" ?>
<!-- This XML Document shows an order of a camera.
It demonstrates how you can use XML for the
transport of structured data -->
<ORDER>
<HEAD>
<lastname>Heymann</lastname>
<firstname>Stefan</firstname>
<address>Pascal Road</address>
<city>Object City</city>
<phone>+49-7071-610498</phone>
</HEAD>
<DATA>
<item>
<orderno>10238</orderno>
<count>1</count>
<name>Hasselblad 501 CM body</name>
<price>2355</price>
</item>
<item>
<orderno>20032</orderno>
<count>1</count>
<name>Carl Zeiss Planar Lens CB 2.8/80 mm</name>
<price>1233</price>
</item>
<item>
<orderno>30212</orderno>
<count>1</count>
<name>Roll Film 120 Magazine A12</name>
<price>917</price>
</item>
</DATA>
</ORDER>