I'm having a session object that does NOT implement the java.lang.Serializable. (its a legacy application, and now I can't go and change the code)
Is there any way where I can store the session object some where and later GET BACK THE SAME STATE in a STANDALONE application.
One thought is to use RMI. Is there any better way of achieving this.
EDIT: The Legacy application has APIs that give me the Session object. On the Session object, I'll be invoking the methods. Getting the Session object is really an expensive operation. So, I would like to Store it some where for any subsequent actions until the Session is valid.
Thank you :)