im searching for informations how to implement a service in our servlet based java web application which can handle online editing (reading / editing / saving) of some common file types like the programs of the office suite via webdav. We have a tomcat 7 running and using webdav already for mounting folders on client computers (implemented by an colleague) which works fine. Now im having the request to research ways to implement this online editing features (for example open a .doc file in our webapp, edit the file in word and save it automaticly in our webapp) and couldn't find that many informations/howtos about this topic.
From what i could find so far i could see that using this webdav feature some response header values needs to be set and a own servlet needs to be implemented. But im still not sure where to start and if im right... Does anybody knows any good resoures for this? (documentations, simple webapp example, ...whatever)?