I have several GWT Maps API JavaScriptObjects (LatLng, Polyline) which I want to send between the client and the server with RPC but becouse they aren't serializable I can't use them. Currently I have Pojos for RPC communication and I mirror them into their JavaScriptObject twins on the client side...
Is there any way to do send these objects through? I have the feeling I'm missing something about how should I do this.