Would anybody dare to guess (or knows!) what criteria is used by Orion
to determine what objects in a JSP page are saved when application shuts
down?

I have a few different objects in a JSP page. They all implement
Serializable,
but serialization is called only on one type.

Why would it not get called on all of them?

Consider these two objects both of which would implement Serializable:

        SomeClass               A=new SomeClass     ();
        SomeOtherClass    B=new SomeOtherClass();

When you restart/shutdown the app, JSP page will call serialization on
object
B, but not A.

Is it me, or is there a logical explanation for this?

Thanks,
-arnox

P.S. This used to work in version 1.4.5 (all would get saved), but works as
described in 1.5.1.


Reply via email to