Sheado
unread,Sep 24, 2011, 3:46:04 AM9/24/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
Howdy,
I'm looking into using RequestFactory to backup my game's data to
AppEngine. Is it possible to have different versions of the client
app, with different EntityProxies, safely make requests?
For example:
Version 1:
MyProxy
{
....
getX()
getY()
....
}
Version 2:
{
....
getX();
.... // getY() is removed
}
Once the server is updated to version 2, it seems that all clients
running version 1 will no longer be able to make requests (i get
Internal Server Error.
Getting your users to update isn't always easy on Android. Is there
any way around this? Or do I just have to be careful to never remove
methods once I've added them to my entities and their proxies?
Thanks!
Chad