• 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

how to solve No collection found.

 
Ranch Hand
Posts: 42
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how to solve this problem.
org.apache.jasper.JasperException: No collection found
From last couple of days I am trying to solve this problem but not able to solve........I am using struts framework.
I think the problem is with logic:iterate tag but unable to solve it.Code is as follows..
<bean efine id="personalInfo"
name="personalinfo"
scope="request"/>

<logic:iterate id="personal"
name="personalInfo"
property="personalInfoList"
scope="request">

<tr>
<td><bean:write name="personal"
property="name"/></td>

<td><bean:write name="personal"
property="surname"/></td>

<td><bean:write name="personal"
property="phno"/></td>
</tr>
</logic:iterate>
Please help me
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You haven't given us enough information to help you. Please post the exact text of the error message along with the first 10 to 15 lines of the stack trace.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic