File fileToSend = null;
RemoteFileSystem rfs = null;
try {
fileToSend = getFileToSend( message );
rfs = RemoteFileSystemFactory.getRemoteFileSystem(getFtpEpr(), true);
rfs.uploadFile(fileToSend, getFileName(message));
} catch (RemoteFileSystemException e) {
throw new NotificationException("Could not complete FTP notification", e);
} catch (IOException e) {
throw new NotificationException("Could not complete FTP notification", e);
} finally {