• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

error no collection after validation

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

This is the senario:

I have a jsp that I validate - in has a nested loop at the bottom that I am not trying to validate any part of.

If the validator reurns and issue my jsp fragments with the following error:

[Servlet Error]-[No collection found]: javax.servlet.jsp.JspException: No collection found.

this is in the jsp:

<nested:iterate id="attachment" property="attachments" indexId="indicator" >

<tr bgcolor="#f0f0f0" >
<td>
<nested:write property="fileName" ignore="true"/>
td>
<td>
<nested:write property="createdBy" ignore="true"/>
</td>
<td>
<nested:write property="createdDate" ignore="true" format="yyyy-MM-dd HH:mm:ss"/>
</td>
</tr>
</nested:iterate>



The ArrayList is part of the form and the VO that populates the form. And all values display when the form is loaded, but after I submit changes and validate, I get the error.

If anyone knows what I need to do I'd greatly appreaciate it.

thx
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic