On 14 juil, 21:41, Sekhar <[email protected]> wrote: > Guys, I'm trying to use HTML5 Local Storage and am wondering how I can > save the data from the server as a string. Since GWT-RPC already > serializes/deserializes Java serializable objects, is there a way to > access its serialization functions to marshal the data to/from the > Local Storage strings?
You can gain access to the GWT-RPC serialization code (provided your objects are used in a GWT-RPC somewhere, so the GWT compiler generates the appropriate serialization/deserialization code), but it won't be of any help in your case, as GWT-RPC serialization is asymmetric (for performance reasons). -- 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.
