while((response == null || !response.exists())){
LOGGER.debug("webdav path: " + path.replace("dav", "webdav") + "/.response");
if(response == null) LOGGER.debug("response == null");
LOGGER.debug("path: " + path);
if(vfsManager == null) LOGGER.debug("vfsManager == null");
response = (WebdavFileObject) vfsManager.resolveFile(path.replace("dav", "webdav") + "/.response");
}
} catch (FileSystemException fsException) {
LOGGER.error(fsException.getMessage());
}
try {