Re: How to load a new GWT app from another GWT app?

2009-04-04 Thread Tony Strauss
I suggest reading: http://code.google.com/p/google-web-toolkit-incubator/wiki/LoginSecurityFAQ and http://groups.google.com/group/Google-Web-Toolkit/web/security-for-gwt-applications These links talk about GWT logins, cookies, and security. A lot of what is provided by sessions on the server

How to load a new GWT app from another GWT app?

2009-04-03 Thread Shank
I am new to GWT , i have created a app where a user has to login now whenever a user logs in successfully, i have to load a application according to the user logged in . How do i load a new application from another GWT application. --~--~-~--~~~---~--~~ You

Re: How to load a new GWT app from another GWT app?

2009-04-03 Thread Tony Strauss
One way is to call Window.Location.assign with the URL of the new application (which the URL varying based on the user's identity). We've implemented a similar requirement with our current project. Our login page actually is *NOT* a GWT application but instead is a simple form (handled by a

Re: How to load a new GWT app from another GWT app?

2009-04-03 Thread Shank
On Apr 3, 10:03 pm, Tony Strauss tony.stra...@designingpatterns.com wrote: One way is to call Window.Location.assign with the URL of the new application (which the URL varying based on the user's identity). We've implemented a similar requirement with our current project.  Our login page

Re: How to load a new GWT app from another GWT app?

2009-04-03 Thread Shank
On Apr 3, 10:03 pm, Tony Strauss tony.stra...@designingpatterns.com wrote: One way is to call Window.Location.assign with the URL of the new application (which the URL varying based on the user's identity). We've implemented a similar requirement with our current project.  Our login page