On 22 mar, 23:13, stsch <[email protected]> wrote: > > I have just started with GWT. What are the approaches to develop a > stateful GWT application? Could any of the experts please summarize > this a bit for a beginner and maybe point me/us to some reference > material?
Keep your server stateless and store all state information in the client (you can use static fields for example). I find it much easier to "think stateless" on the server side (aside from "ReST" arguments), but of course YMMV and you're still free to choose HttpSession (or other session mechanism, if you don't use Java server-side) if you prefer... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
