dav7.sax 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. SAX.setDocumentLocator()
  2. SAX.startDocument()
  3. SAX.startElement(d:multistatus, xmlns:d='http://www.ietf.org/standards/dav/')
  4. SAX.characters(
  5. , 3)
  6. SAX.startElement(d:response)
  7. SAX.characters(
  8. , 5)
  9. SAX.startElement(d:href)
  10. SAX.characters(http://www.foo.bar/container/r, 38)
  11. SAX.endElement(d:href)
  12. SAX.characters(
  13. , 5)
  14. SAX.startElement(d:href)
  15. SAX.characters(http://www.foo.bar/container/r, 38)
  16. SAX.endElement(d:href)
  17. SAX.characters(
  18. , 5)
  19. SAX.startElement(d:status)
  20. SAX.characters(HTTP/1.1 200 OK, 15)
  21. SAX.endElement(d:status)
  22. SAX.characters(
  23. , 3)
  24. SAX.endElement(d:response)
  25. SAX.characters(
  26. , 3)
  27. SAX.startElement(d:response)
  28. SAX.characters(
  29. , 5)
  30. SAX.startElement(d:href)
  31. SAX.characters(http://www.foo.bar/container/, 29)
  32. SAX.endElement(d:href)
  33. SAX.characters(
  34. , 5)
  35. SAX.startElement(d:status)
  36. SAX.characters(HTTP/1.1 420 Method Failure, 27)
  37. SAX.endElement(d:status)
  38. SAX.characters(
  39. , 3)
  40. SAX.endElement(d:response)
  41. SAX.characters(
  42. , 3)
  43. SAX.startElement(d:response)
  44. SAX.characters(
  45. , 5)
  46. SAX.startElement(d:href)
  47. SAX.characters(http://www.foo.bar/container/r, 38)
  48. SAX.endElement(d:href)
  49. SAX.characters(
  50. , 5)
  51. SAX.startElement(d:status)
  52. SAX.characters(HTTP/1.1 412 Precondition Fail, 32)
  53. SAX.endElement(d:status)
  54. SAX.characters(
  55. , 3)
  56. SAX.endElement(d:response)
  57. SAX.characters(
  58. , 1)
  59. SAX.endElement(d:multistatus)
  60. SAX.endDocument()