RE: serializing java code

2006-01-23 Thread Nehal Sangoi
PROTECTED] Sent: Tuesday, January 24, 2006 12:55 PM To: 'Tomcat Users List' Subject: RE: serializing java code Your "code" does not really get "serialized". You just have to be sure that you are not storing any objects in the Session that are not Serializable - i.e. the

RE: serializing java code

2006-01-23 Thread Richard Mixon
Your "code" does not really get "serialized". You just have to be sure that you are not storing any objects in the Session that are not Serializable - i.e. they must implement the interface java.io.Serializable. For many of your custom object types it may be as simple as just implementing the Seri

Re: serializing java code

2006-01-23 Thread vineesh kumar
u can just impelment the serializable interface. if u want to gnerate unique IDs for each classes u can simply use the serialver tool that comes with JDK which usually resids at the $JAVA_HOME/bin On 1/24/06, Nehal Sangoi <[EMAIL PROTECTED]> wrote: > > Hi > > I need to serialize my existing java