I copied javax.faces.model.ListDataModel to my own file and then modified it by only adding "implements Serializable" and now it seems to work.
Jon
----- Original Message ----- From: "Jonathan Eric Miller" <[EMAIL PROTECTED]>
To: "MyFaces Discussion" <[email protected]>
Sent: Thursday, March 17, 2005 3:57 PM
Subject: Re: Fw: DataModels not Serializable?
I tried doing something like this, but, it doesn't seem to work. When I undeploy and redeploy my Web application, it appears that the list is disappearing (I have a h:dataTable bound to a data model and the table size goes to 0). The rest of my bean's state (i.e. simple properties) seem to be OK...
package mypackage.faces.model;
import java.io.Serializable;
import java.util.List;
public class ListDataModel extends javax.faces.model.ListDataModel implements Serializable {
public ListDataModel() {
super();
}
public ListDataModel(List list) {
super(list);
}
}
Jon

