potest.output 725 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <PurchaseOrder xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://cpandl.com">
  3. <ShipTo Name="Teresa Atkinson">
  4. <Line1>1 Main St.</Line1>
  5. <City>AnyTown</City>
  6. <State>WA</State>
  7. <Zip>00000</Zip>
  8. </ShipTo>
  9. <OrderDate>13 May 2003</OrderDate>
  10. <Items>
  11. <OrderedItem>
  12. <ItemName>Widget S</ItemName>
  13. <Description>Small widget</Description>
  14. <UnitPrice>5.23</UnitPrice>
  15. <Quantity>3</Quantity>
  16. <LineTotal>15.69</LineTotal>
  17. </OrderedItem>
  18. </Items>
  19. <SubTotal>15.69</SubTotal>
  20. <ShipCost>12.51</ShipCost>
  21. <TotalCost>28.20</TotalCost>
  22. </PurchaseOrder>