Re: Serialization Problem

2010-06-27 Thread Ahmed Shoeib
hi Sebastian Rothbucher , i founded the problem in returning arrayList of object from Member Class i replaced this with Array one dimension of Member Class ans this problem solved do you have any comment about why there is not available to return arrayList thanks for reply .. best

Re: Serialization Problem

2010-06-25 Thread Sebastian Rothbucher
Hi Ahmed, does your Member class contain associations to other classes? If yes, I guess to have to repackage the lists as well... (i.e. create a new Hashtable and so on). Another question could be if you can have annotated classes on the client or you have to copy those classes as well, i.e. have

Re: Serialization problem -- nested ArrayLists are full of NULL instead of data

2010-03-25 Thread Thad
You may have to do a deep copy of your arrays. For example, I had to do a deep copy to get a copy of a window location parameter map: private HashMapString, ListString getParamMap() { MapString, ListString paramMap = Window.Location.getParameterMap(); //

Re: Serialization problem using CustomFieldSerializer(s) and specifying specific .java files in gwt module xml

2009-10-04 Thread brancoch
I had something similar using GWT2.0 and GAE plugin in Eclipse. I was using a custom serializable object (UserContext) which was holding a reference to SetString. I was working ok for awhile then suddently stopped working. After reviewing all items that was introduced since the last time it was

Re: Serialization problem

2009-05-21 Thread Jim
You can not use Object in VectorObject for GWT client code. You may try to use VectorSerializable Jim http://www.gwtorm.com - GWT ORM http://code.google.com/p/dreamsource-orm/ On May 21, 6:05 am, Yulia yuli...@gmail.com wrote: Hello I have class StringValue which extends abstract class

Re: Serialization problem

2009-05-21 Thread Yulia
I didn't try VectorSerializable, don't know if it works. I decide to make a class with fields for data I want to return instead of using VectorObject. Now it works. Thank you! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Serialization problem

2009-01-12 Thread huma
Thank you for your answer! I will see that information. But what is your opinion about the error message This application is out of date, please click the refresh button on your browser. . I would like to know why I'm receveing that message. Thank you! On 12 Jan, 15:14, ganesh machkure