I am trying to do webdav on rails. I already did it with PHP so it
should not be
much difference.
However I have some problems.
- When Word sends PROPFIND it sends GET request with XML inside the
request
body. However I cannot seem to get this information.
request.body returns no such method even though request.inspect shows
there is
instance variable called @body.
How can I access that?
- Is there a way to send status code “207 Multi-Status” back?
If I do render :text => ‘something’, :status => ‘207 Multi-Status’, it
still
remains as the number 207 only…