If I have a complex object with hundreds of String fields and objects of objects. Some are implementing Serializable and some aren't.
How would a j2ee server serialize that data in session. Would I expect all data to be returned. Even the objects of objects.
Session.setAttribute(data)
E.g. Session.getAttribute() == data.getData().getData().getData().getData1()
Will the object returned from getData1() return correctly?
(I am using both Tomcat 6 and Websphere 6+)