I am assuming you mean client side static variables v/s server session (doesn't make sense any other way)..
GWT recommends going stateless - which means no session. In practice, however, we compromised a little. In our application, we store roles/permissions in session so that we can authorize a RPC request. Everything else is store in client side variables. --Sri 2009/11/18 iaio81 <[email protected]> > Hi all, > according to you, in order to save user's information, is it better > saving them into static variables or in session? > > Thanks in advance > > -- > > 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]<google-web-toolkit%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=. > > > -- 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=.
