File file = new File(location);
try {
FileOutputStream fout = new FileOutputStream(file);
connector().find(repository).session(workspace).exportSystemView(path, fout, skipBinary, noRecurse);
} catch (Exception e) {
throw new RemoteException(e.getMessage());
}
}