JSP data not seen by ActionForm
Hello:
Dev. Env. : Java/JSP/Struts
I have a JSP with a few text fields and text area fields. When I submit the JSP, my ActionForm sees the data in the "setter" methods from all the fields except for one which has a date value
JSP :
<html:text property="impldate" size="12" />
ActionForm :
public Date impldate = null;
public void setImpldate(Date iDate)
{
impldate = iDate;
}
In the past I've had a problem like this when I had capitalized the name of the "setter", (e.g.) for a field called "teamname", if I named the "setter" as "setTeamName" it would not even go to the setter, but once I changed it to "setTeamname"(changed the "n" in "setTeamName" to lower case), it worked fine. But this time, nothing seems to work.
Any insight as to where I could be going wrong/what I need to set is greatly appreciated.
Thanks.

