Re: Serializable objects lost during Async call

2010-07-24 Thread Yau
Yes, it could possibly be some of the fields being transient. I'm using Hibernate with Gilead and all subclasses are working perfectly fine through RPC. Somehow gilead as well as rpc are kinda blackboxes and I can't debug into them and figure out what happened. In the end, I have to use Serializ

Re: Serializable objects lost during Async call

2010-07-22 Thread cokol
hi.actually impossible.for me it worked out.could u provide more information on the subclasses. or the fields are marked transient or such. On Jul 22, 6:00 pm, "Kevin (Yau) Leung" wrote: > I'm using GWT 2.0.3 and have encountered a problem during async rpc. > > I have a serializable class contain

Serializable objects lost during Async call

2010-07-22 Thread Kevin (Yau) Leung
I'm using GWT 2.0.3 and have encountered a problem during async rpc. I have a serializable class containing a number of other serializable class. E.g. class Parent implements java.io.Serializable { private ChildA childA; private ChildB childB; private ChildC childC; private ChildD childD