Hi Barry,
This is quite possible. In fact GWT will take care of the RPC serialization
and deserialization for you.

As for the storage on the server: you can implement your own, or easily
build something on top of App Engine using the datastore API and memcache:
  http://code.google.com/appengine/docs/java/datastore/
  http://code.google.com/appengine/docs/java/memcache/

HTH
Fred

On Thu, Jun 25, 2009 at 11:18 AM, Barry <[email protected]> wrote:

>
> Hi --
>
> My application needs to implement a key-value database (i.e., for a
> given key, the database returns a value).
>
> My first thought would be that the GWT client should serialize
> whatever it wants to store, then pass it to the server, where the
> server would store it as a bag of bytes. The reverse would be true
> when the client passes a key to the server: the server returns the bag
> of bytes, and the client deserializes it.
>
> Is this doable in GWT with java.io.Serializable? I have read the 1.4
> FAQ, and it seems encouraging.
>
> Has this already been done, and if so, can someone point me there??
>
> Thanks.
> >
>


-- 
Fred Sauer
[email protected]

[]

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to