We're just getting started in Tapestry and our login is initialized as
seen below.

But a second browser (mixing IE and Foxfire) seem to "share" the login
of the first person - so I believe this is wrong.

I'm guessing that the Start class is only initialized once for all
users, is that true?

Any suggestions?

 

Thanks!

 

@ComponentClass

public class Start {

      public Start() {

            setLoginState(new LoginState());

            setLoginMessage("Please Login");

            System.out.println("Start Constructor");

      }

      @Persist("session")

      private LoginState _loginState;

 

Reply via email to