This is my dwr.xml
....
<convert converter="bean" match="it.test.bean.Person"/>
<convert converter="bean" match="it.test.bean.Telephone"/>
....
and this is my class Person
public class Person implements Serializable{
private int id;
private String name;
private String surname;
....
//with getter and setter method
my dwr.java file return an array of object of Person type. When I read the the data in my jsp page with javascript the response.length is 6 like in my dwr.java but of null Object.
I can't figure out where could be the error. I thank you for any replies.