I use the Google Appengine APIs to send events from server to client.
The problem is that the channel API sends messages like java.lang.String. Therefore, my classes in the ~ .shared package must be converted to a string before I could pass them to the channel!
Since I use GWT for the client side, I thought it would be nice if I could use the “free” serialization provided by GWT.
How can I get a GWT-RPC service to serialize my objects on the server side and send them to the channel?
I found this one , but uses an undocumented RPC that has already been modified. Any thoughts?
source
share