Hi All,
I'm trying to do a simple iterate .. it's even simpler that than one I
download from Arron Bate's site since the formbean has the reference to the
list of objects.
In my FormBean I have:
<code-snippet>
private Vector x = null;
public Object[] getX(){
return this.x.toArray();
}
public void setX(Vector x) { this.x = x; }
</code-snippet>
I first set this attribute to some value in my action class. In my jsp page
I have:
<nested:iterate property="x">
.... something
</nested:iterate>
Note: I put this right under the <html:form .> tag since it's in the
FormBean class.
The problem is that weblogic is not finding the getter for property "x".
I get the error:
javax.servlet.jsp.JspException: No getter method for property x of bean
auctionForm
Does anyone have any suggestions on how I can go about solving this?
thanks for any help in this,
- ej
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>