I have the following snippet of code in my jsp: <logic:iterate id="columnName" name="ParticipantImportWizardForm" property="columnNameList">
<table border="1" width="80%"> <tr> <td width="50%"><h3 align="center">Column Name</h3> </td> <td width="50%"><h3 align="center">Type</h3> </td> </tr> <tr> <td width="50%"><html:text property="columnName" /></td> <td width="50%"> <p> </p> </td> </tr> .... I get the error "No getter method for property columnName of bean org.apache.struts.taglib.html.BEAN". columnNameList is a collection of Strings. I can't figure out what I have to set the name and property attributes of html:text in this case.