On 5/20/06, Tomi NA <[EMAIL PROTECTED]> wrote:
> private Object readResolve() throws ObjectStreamException {
> DataContext dc = DataContext.getThreadDataContext();
> return dc == null ? this : dc.localObject(getObjectId(), this);
> }
This was the problem, right here: in all the confusion, I left the readResolve access modifier as "private". Changing it to "protected" makes a world of difference. :) Thanks for the guidance, Andrus. t.n.a.
