File: invoice1.xml

package info (click to toggle)
castor 1.3.2-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 44,976 kB
  • sloc: java: 206,032; xml: 95,088; sql: 14,460; sh: 365; makefile: 10
file content (31 lines) | stat: -rw-r--r-- 778 bytes parent folder | download | duplicates (4)
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
<?xml version="1.0"?>
<invoice xmlns="http://castor.exolab.org/Test/Invoice">

   <ship-to>
      <name>Mad Dog</name>
      <address>
         <street1>1900 South Norfolk</street1>
         <city>San Mateo</city>
         <state>CA</state>
         <zip-code>94403</zip-code>
      </address>
      <phone>650-577-4700</phone>
   </ship-to>

   <item Id="0.9.5" InStock="true" Category="Open Source Project">
      <Quantity>1</Quantity>
      <Price>100.00</Price>
   </item>

   <shipping-method>
      <carrier>UPS</carrier>
      <option>Ground Trak</option>
      <estimated-delivery>P1D</estimated-delivery>
   </shipping-method>

   <shipping-date>
      <date>2002-10-24</date>
      <time>12:30:00</time>
   </shipping-date>

</invoice>