I am using Google Appengine's Channel API to send events from server to the client.
The problem is Channel API only sends messages of type java.lang.String So my classes in the ~.shared package needs to be converted to string before I could pass them down to channel!
Since I'm using GWT for the client side I thought it would be good if I could use a 'free' serialisation provided by GWT.
How could I get GWT-RPC service to serialise my objects on the server side and send them to the channel?
I found this but it uses undocumented RPC which has already been changed. Any thoughts?