Hi all,
I am getting the exception "TableVO was not included in the set of
types which can be serialized by this SerializationPolicy or its Class
object could not be loaded. For security purposes, this type will not
be serialized." and I do not understand why. Here is the structure of
my TableVO class:
public class TableVO implements Ancestor, Serializable{
private String name;
public TableVO () {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
I am using gwt 1.6.0 and JDK 1.5.
Any help/hint would be appreciated.
Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---