Something like the following should work (double-check the syntax though!):
<%@ page import="com.oe.wa.cal.bean.DownloadBean" %>
> <%
>
for (DownloadBean db: (List<DownloadBean>)
request.getAttribute("downloadList").iterator()) {
> out.print(db.getSomeProperty());
>
}
> %>
>
>
-Brian

