In the backend I send an object of type Parent to the client through RPC, which is defines in the api.
However, in the persist layer I create a private subclass of Parent, namely ParentHelper, which I need during the DB fetching action, nothing really, it just adds some fields not further relevant to other parts of the backend. However, GWT now complaints that it can't deserialize the object ParentHelper, which is correct as it's outside the GWT scope (source package). I want it to simple ignore the subclass ParentHelper and pretend like it's a Parent instance. How can I do this ? I looked at the RPC enhancer functionality, but it's not really what I want, as it should simple forget that there even exists a subclass.. Ed -- 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.
