Hi
In my Action class I put in request scope a List:
request.setAttribute("statuses", allStatuses(getAllGroups(),asm));

Then on my jsp page im iteratig over it:
<logic:iterate id="status" name="statuses" scope="request">
  <tr bgcolor="#ffffff">
  <td><bean:write name="status" property="displayName"/></td>
...
...
</logic:iterate>

Everething is fine and iterating, but tomcat's console always give an
exception:
org.apache.jasper.JasperException: Cannot find bean statuses in scope
request

This is the ONLY place in jsp file where I'm working with this List...
Interesting that I'm gettin a data from this collection normally, but still
this exception :)

Any ideas?

P.S. Probably this started to happen after i migrated from struts 1.1 to
1.2...




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to