I would try making your Logger variable transient or remove it. Matt
On Fri, Jun 19, 2009 at 9:20 AM, David Brown <dbr...@sexingtechnologies.com>wrote: > Hello appfusers, I have a version of the appfuse-wicket-ibatis project > running with all of the UserXXX.class objects duplicated as a separate > process function. The target class is throwing a class unable to serialize > exception (included below). I noticed the original project source class: > UserList.java has the following: > > > private static final long serialVersionUID = -5202104862675278153L; > > > which obviously mitigates the serialization issues. I attempted the > following in my XXXList.class: > > > private static final long serialVersionUID = 1L; > > > This makes no change in the exception thrown: > > > ********************************** > java.io.NotSerializableException: > org.apache.commons.logging.impl.SLF4JLocationAwareLog > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@appfuse.dev.java.net > For additional commands, e-mail: users-h...@appfuse.dev.java.net > >