Is your Set Serializable? Is it marked as transient?
Hmm, the Set comes from Hibernate, and according to Hibernate, net.sf.hibernate.collection.PersistentCollection implements java.io.Serializable. There are a lot of transient fields on it though, like the SessionImplementor for example. That may be the root of the problem. I'll dig a little deeper and see what I can figure out.
The motivation from the question comes from a problem i'm trying to solve elegantly. We are displaying a form on the screen that contains some, but not all of the fields on a persistent object. The action tries to persist the object, but any fields not on the screen are obliterated. We moved the object to the Session scope, and now just this Set is getting obliterated.
Are we goign about this the wrong way? Any ideas?
Anoop
------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Opensymphony-webwork mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/opensymphony-webwork
