myDAVConfig = null;
}
}
public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
ServletDAVHandler handler = null;
logRequest(request);//TODO: remove later
try {
DAVRepositoryManager repositoryManager = new DAVRepositoryManager(getDAVConfig(), request);
handler = DAVHandlerFactory.createHandler(repositoryManager, request, response);
handler.execute();
} catch (DAVException de) {
response.setContentType(XML_CONTENT_TYPE);
handleError(de, response);
} catch (SVNException svne) {
StringWriter sw = new StringWriter();