for(String fileName : fileNames) {
File file = new File(documentsDir, fileName);
try {
DocumentPush docPush = new DocumentPush(couchDb, file);
docPush.push();
} catch(Exception e) {
throw new ServletException("Problem pushing document: "+file.getAbsolutePath(), e);
}
}
}