0

When returning a 500 error response, i want to have a WebDAV XML response like:

<?xml version="1.0" encoding="utf-8" ?>
<D:error xmlns:D="DAV:">
  <D:must-be-checked-in/>
</D:error>"""

But instead of <D:must-be-checked-in/> i need some property for "Internal server error" which i could not find in any of the related RFCs. Is there a standard webdav response for server errors? Or an empty response body is ok?

warvariuc
  • 57,116
  • 41
  • 173
  • 227

1 Answers1

1

If you don't have anything more specific to tell, an empty response body is just fine.

Julian Reschke
  • 40,156
  • 8
  • 95
  • 98
  • > If you don't have anything more specific to tell... < I would like to include error description at least – warvariuc Dec 27 '12 at 06:19