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.

can anybody provide any xml schema for DAV: (WebDav) namespace for validation of request?

Goal is to check requests before processing request. I try to search any with ggl, but i can`t find any xsd :(

share|improve this question

1 Answer

1) You can extract the DTD from the spec, and convert using JING.

2) That being said: don't. You are likely going to create code that fails for perfectly valid requests (consider ordering, and the extensibility rules).

share|improve this answer
Just to add to that, real world webdav clients often use properties not in the RFC. For example windows uses its own properties (eg iscollection) which are not part of the Dav RFC but which use the DAV namespace. And some MS clients do not send XML in the request at all. – brad Feb 28 at 10:51
brad - note that the latter is perfectly ok – Julian Reschke Feb 28 at 12:34

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.