Re: Serialization issue with generic Maps

2009-04-16 Thread rmuller
The problem is you cannot use Object as a type argument Regards, Ronald --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Serialization issue with generic Maps

2009-04-16 Thread Jason Essington
Object is the super class of EVERY java object, by telling GWT that you are returning Object, it would force the compiler to generate a serializer for every serializable object on its classpath! that is horribly inefficient. you'll want to narrow that type down a bit. -jason On Apr 2,

Re: Serialization issue with generic Maps

2009-04-16 Thread Salvador Diaz
Here's a similar thread with possible workarounds: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/a3081e050d5b719a# On Apr 2, 4:32 pm, snorbi sandor.norb...@erinors.com wrote: Hello, We have problems serializing generic Maps in gwt-1.6.2 (both in web and hosted