if (handler == null) {
throw new Exception("No handler for upload type " + upload.getType());
}
request.setAttribute(Constants.REQ_ATTR_UPLOAD_DETAILS, new Integer(uploadId));
ActionForward fwd = handler.performUpload(request, response, upload, uploadForm.getUploadFile());
ActionMessages msgs = new ActionMessages();
if(upload.getResourcePath()==null) {
msgs.add(Globals.MESSAGE_KEY, new BundleActionMessage("vfs", "upload.info.fileUploadedNoPath", uploadForm.getUploadFile()
.getFileName()));
} else {