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.

[916 byte] By [chennaia] at [2007-10-2 4:00:26]
# 1
Please ignore my previous post.Thanks.
chennaia at 2007-7-15 23:22:31 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...