Re: Weird error on RPC calls

2010-10-05 Thread Quincy
Are you intending for ActualModelData to extend MyModelData rather than ModelData? Yes - sorry my typo. I would have loved to step through the source for the serializer and try to work out why that field didn't get serialized, but I don't know where to find that code. Thanks, Quincy -- You

Weird error on RPC calls

2010-10-04 Thread Quincy
Hi, I'm encountering a problem that I can't work out related to RPC and inheritence - the instance variable in my parent class didn't get serialized. I'm using GXT for my project. Below are my code snipplet: /* The data that are transmitted over the wire */ public abstract class MyModelData

Re: Weird error on RPC calls

2010-10-04 Thread Jin
Hi, Are you intending for ActualModelData to extend MyModelData rather than ModelData? The code snippet seems to show it extending ModelData, which is implemented by MyModelData. So the ActualModelData class will run the setOldData method from ModelData rather than the setOldData method from