Not sure if helps, but I had serious Serialization Exceptions with my beans, because I was using a kind of "property change listener" here, and when the bean was sent to the servlet, it tried to send also the Dialog that was listening to my bean.
Error message, unfortunately, was not enough clear... all the time, GWT was complaning about an ArrayList<ValidBean>, that was serializable. Once I put my "property change support" list as transient, the problems just disappeared. May be you are facing similar problem with an inner dependency (I mean, in some aggregate collection). Hope this helps, Edson. 2010/3/3 Peter Simun <[email protected]> > Generics are probably not an issue in this case. > Can you post full source code of your GetContactRequest class ? > And ... what is GetContactResponse ? Maybe the problem is in that > class. > > Peter > > On Mar 2, 8:32 pm, Yaakov Chaikin <[email protected]> wrote: > > No, it wasn't the same problem... I didn't notice that I didn't have a > > no-arg constructor there. > > > > Thanks, > > Yaakov. > > > > On Tue, Mar 2, 2010 at 10:09 AM, Paul Robinson <[email protected]> > wrote: > > > > >> Is this a GWT problem where it fails because I am using generics??? > > > > > Probably. I see you've already found the issue: > > >http://code.google.com/p/google-web-toolkit/issues/detail?id=2374 > > > > > However, do be aware that merely implementing Serializable does not > make > > > something gwt-serializable. You also need a no-arg constructor and all > > > non-transient non-final members to be gwt-serializable. > > > > > Paul > > > > > -- > > > You received this message because you are subscribed to the Google > Groups "Google Web Toolkit" group. > > > To post to this group, send email to > [email protected]. > > > To unsubscribe from this group, send email to > [email protected]<google-web-toolkit%[email protected]> > . > > > For more options, visit this group athttp:// > groups.google.com/group/google-web-toolkit?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-web-toolkit%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
