I have a question regarding the doPut method in WebdavServlet implementation in Java.
If you are not familiar with it, I don't think you need to be.
doPut takes in 2 parameters, HttpServletRequest req, and HttpServletResponse resp.
Basically, doPut puts a file into your servlet.
I have some questions about how it is specifying WHICH FILE to put and WHERE it is put.
So I think that WHERE it is put is gotten from getRelativePath(req).
But I have no idea about the file part.