Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How should a WebDAV server response when it receives a PROPFIND request for a resource that does not exist?

The RFC seems to say you should always return a 207 and then use 404 for properties that don't exist. But what if the resource itself doesn't exist?

share|improve this question

1 Answer

up vote 4 down vote accepted

The right answer is 404, which is true in general for most methods.

Where does it suggest it should be 207?

share|improve this answer
That makes sense, but it never really says that anywhere in the RFC. It only talks about returning the 207. – Dave Nov 6 '09 at 19:06
Well, it also never says that you'll get 401 when credentials are missing :-) All of HTTP/1.1 applies as well, always. – Julian Reschke Nov 24 '09 at 8:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.