private ImportData handleMultiPartFormUpload(ImportContext context) {
DiskFileItemFactory factory = new DiskFileItemFactory();
// @revisit - this appears to be causing OOME
//factory.setSizeThreshold(102400000);
RestletFileUpload upload = new RestletFileUpload(factory);
List<FileItem> items = null;
try {
items = upload.parseRequest(getRequest());
} catch (FileUploadException e) {
throw new RestletException("File upload failed", Status.SERVER_ERROR_INTERNAL, e);
}
//look for a directory to hold the files