Thanks! With your help I have solved my issue. With your clues and some digging I discovered that I was using a singleton service. The service stored the user's identity in the class rather than keeping it in method scope. I moved everything to method scope and this solved my issues.
Thanks again. -S2 -- Steve Moitozo II Eelco Hillenius wrote: > Yeah, like I said, you probably actually work on the same data with > different sessions. Likely, you use a static reference or a singleton > somewhere for the currently logged on user. > > Eelco > > > On 7/15/06, Steve Moitozo <[EMAIL PROTECTED]> wrote: >> I get the same behavior using two different computers or two different >> browsers on the same computer. >> >> I've used both Firefox and Safari. >> >> -S2 >> -- >> Steve Moitozo II >> >> >> Julian Klappenbach wrote: >>> Curious: >>> >>> Are you attempting to log into the application using the same computer >>> for both users? What browser are you using? >>> >>> -----Original Message----- >>> From: [EMAIL PROTECTED] >>> [mailto:[EMAIL PROTECTED] On Behalf Of Steve >>> Moitozo >>> Sent: Friday, July 14, 2006 1:49 PM >>> To: [email protected] >>> Subject: [Wicket-user] Possible session issue in my app? >>> >>> I have whipped up a shiny new Wicket application and I just noticed >>> something that is a bit of a show stopper for me. >>> >>> If I login as BOB and a friend logs in as LARRY and I click on a link my >>> application thinks I'm LARRY! Have I stored user data in the wrong >>> place? Any ideas? >>> >>> -S2 >>> -- >>> Steve Moitozo II >>> >>> >>> >>> ------------------------------------------------------------------------- >>> Using Tomcat but need to do more? Need to support web services, security? >>> Get stuff done quickly with pre-integrated technology to make your job >>> easier >>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >>> _______________________________________________ >>> Wicket-user mailing list >>> [email protected] >>> https://lists.sourceforge.net/lists/listinfo/wicket-user >>> >> >> ------------------------------------------------------------------------- >> Using Tomcat but need to do more? Need to support web services, security? >> Get stuff done quickly with pre-integrated technology to make your job easier >> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >> _______________________________________________ >> Wicket-user mailing list >> [email protected] >> https://lists.sourceforge.net/lists/listinfo/wicket-user >> > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Wicket-user mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/wicket-user > ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
