src/java/org/apache/fulcrum/upload/DefaultUploadService.java [209:228]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		try {
			return upload.getItemIterator(req);
		} catch (FileUploadException e) {
			throw new ServiceException(UploadService.ROLE, e.getMessage(), e);
		} catch (IOException e) {
			throw new ServiceException(UploadService.ROLE, e.getMessage(), e);
		}
	}

	/**
	 * <p>
	 * Parses a <a href="http://www.ietf.org/rfc/rfc1867.txt">RFC 1867</a> compliant
	 * <code>multipart/form-data</code> stream.
	 * </p>
	 *
	 * @param req The portlet request to be parsed.
	 * @throws ServiceException Problems reading/parsing the request or storing the
	 *                          uploaded file(s).
	 */
	@Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/fulcrum/upload/DefaultUploadService.java [310:328]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		try {
			return upload.getItemIterator(req);
		} catch (FileUploadException e) {
			throw new ServiceException(UploadService.ROLE, e.getMessage(), e);
		} catch (IOException e) {
			throw new ServiceException(UploadService.ROLE, e.getMessage(), e);
		}
	}

	/**
	 * Utility method that determines whether the request contains multipart
	 * content.
	 *
	 * @param req The servlet request to be evaluated. Must be non-null.
	 *
	 * @return <code>true</code> if the request is multipart; <code>false</code>
	 *         otherwise.
	 */
	@Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



