Hi
I get the following error when the jsp page is displayed after the validation fails
(Validation errros are all working fine)
[Ljava.lang.String;@d23.
This happens when I am passing values to a String Array. eg: .jsp I have
<html:text property="firstName" />
These are my set and get methods in my ActionForm
private String [] FirstName=null;
public String[] getfirstName(){
return FirstName;
}
public void setfirstName(String[] newName){
FirstName = newName;
}
It works fine when I use String but returns jusn when using String array. The values
are being set correctly when I ran in debug mode.
Is this a bug??
Thanks