6
votes
Client side Callback in GWT
Well, there are a couple of Options. You need to get the data from the server... So you either need to poll the server, or use server push.
Polling is pretty easy. Just use the …
1
vote
Session management in GWT without using Java on the server?
Without knowing how you're doing your RPC is working, its hard to give good advice.
If your AJAX service requires a user to be authenticated (IE have a valid session), it is ok to just send …
0
votes
GWT Change URL after processing request parameters
History per Igro's suggestion is the way to go if you can. If you HAVE to process information on the sever before you can even show somebody the page that is going to host the GWT, then you can pr …
