I'm trying to populate the items of a foreach-element in a JSP page.
<c:forEach var="request" items="${manageSchedulesBean.userController.getRequestsBySchedule[schedule.scheduleId]}">
Gives me:
org.apache.jasper.el.JspPropertyNotFoundException: /secure/manageSchedules.jsp(40,36) '${manageSchedulesBean.userController.getRequestsBySchedule[schedule.scheduleId]}' Property 'getRequestsBySchedule' not found on type $Proxy8
the called function exists, and when i cann manageSchedulesBean or userController, there is no error.
Someone got a clue?