REST Web Services - Beispiel für eine Repräsentation eines Warenkorbes


/ Published in: XML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. HTTP/1.1 200 OK Content-Type: text/xml
  2. <?xml version="1.0"?>
  3. <warenkorb xmlns:xlink="http://www.w3.org/1999/xlink">
  4. <kunde xlink:href="http://shop.snipplr.com/kunde/5873">
  5. 5873</kunde>
  6. <position nr="1" menge="5">
  7. <artikel xlink:href="http://shop.snipplr.com/artikel/4501" nr="4501">
  8. <beschreibung>Dauerlutscher</beschreibung>
  9. </artikel>
  10. </position>
  11.  
  12. <position nr="2" menge="2">
  13. <artikel xlink:href="http://shop.snipplr.com/artikel/5860" nr="5860">
  14. <beschreibung>Earl Grey Tea</beschreibung>
  15. </artikel>
  16. </position>
  17. </warenkorb>

URL: http://www.oio.de/public/xml/rest-webservices.htm

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.