Re: GWT RPC & DataStore

2009-05-15 Thread Sumit Chandel
Hi Chris, There is some information available about serializable types allowed thorough RPC in the GWT docs (link below). You should take a read through that to make sure that the types you're using aren't violating any of the conditions for types serialized over RPC. GWT Developer Guide - Seriali

GWT RPC & DataStore

2009-05-15 Thread goetzchr
Hi @ all, i want to create object from a custom class, send them over rpc to the server and then store them into the google datastore. my problem is to send objects from a class which i created over the rpc to the server. i've generated a client interface which both classes were implementing. bu