It happened to me recently. This means an object returned by your server-side code is actually a dynamic proxy. Hopefully by reading the whole stack trace you might figure out which object in your graph is the proxy. Then, you need to replace it by a serializable implementation.
I am pretty sure you can debug GWT's code to find out exactly which object is a dynamic proxy, but following the stack trace might provide a quicker answer. Regards, Michael Nascimento Santos http://threeten.sf.net/ On Thu, Jun 7, 2012 at 12:49 PM, Raymond Cidad <[email protected]> wrote: > Hey guys, > > have you ever get an error like this? > > All my types are Serializables, default constructor, etc... like always. > > I dont know that is thisĀ '$Proxy86' that is shown in the error > > thanks for your help > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/google-web-toolkit/-/cFId9SUT-1AJ. > 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. -- 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.
