Hi all,

I have a question concerning the EJBObject and its context. 
When a client serializes 
and saves a context of a stateful session bean using a Handle, the client can 
retrieve this information, for example, to recovery a failure. 

static Bean t1 = null;

...

Handle handle = t1.getHandle();
 
ObjectOutputStream p = new ObjectOutputStream(new
        FileOutputStream("SaveHandle.dat"));
p.writeObject(handle);
p.close();
               
       
               
However, the information about the stateful variables is lost. 
This information is not part of the context, I think.
How can I correctly save and retrieve this information?

Thanks for any suggestion. Marcia.

----
To unsubscribe, send email to [EMAIL PROTECTED] and
include in the body of the message "unsubscribe jonas-users".
For general help, send email to [EMAIL PROTECTED] and
include in the body of the message "help".

Reply via email to