[Wicket-user] Deployment Help

2006-05-01 Thread Steve Moitozo
ns attempting to get my simple app from "Ready to deploy" to "Deployed" in Jetty and cannot seem to find anything to bridge the gap. Am I looking too hard or not in the right place? Thank you for any help you can provide. -S2 -- Steve Moitozo II begin:vcard fn:Steve Moitozo

[Wicket-user] Possible session issue in my app?

2006-07-14 Thread Steve Moitozo
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 --

Re: [Wicket-user] Possible session issue in my app?

2006-07-14 Thread Steve Moitozo
newSession() { return new PwdMgrWebSession(PwdMgrWebApplication.this); } }; } // docs from super public Class getHomePage(){ return PageHome.class; } } -S2 -- Steve Moitozo II Igor Vaynberg wrote:

Re: [Wicket-user] Possible session issue in my app?

2006-07-15 Thread Steve Moitozo
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 &g

Re: [Wicket-user] Possible session issue in my app?

2006-07-15 Thread Steve Moitozo
hanks 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

[Wicket-user] java.io.NotSerializableException on my session object

2006-07-18 Thread Steve Moitozo
error would cause state replication to fail. True? -S2 -- Steve Moitozo II - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your

Re: [Wicket-user] java.io.NotSerializableException on my session object

2006-07-18 Thread Steve Moitozo
work in a single JVM environment but it will probably not work in a clustered environment? -S2 -- Steve Moitozo II Manager of Web Technology Bates College 207-786-6266 Get the Bates College CA Certificate at: http://www.bates.edu/ils/offices/web/crypto/ Igor Vaynberg wrote: > this is not a re

Re: [Wicket-user] java.io.NotSerializableException on my session object

2006-07-18 Thread Steve Moitozo
something or violating a Wicket principle as I build out my app. > the debug feature serializes immediately so you get the error now > instead of whenever the servlet container tries to replicate your session > for you - at which point you will get a very similar error. Thank