Re: Wicket play nicely with GWT

2008-05-14 Thread Brill Pappin
passing generated data in and out of GWT that doesn't come from the RPC is a bit messy... there are a few ways to do it, but you really want to avoid trying to do that unless GWT initiates the call. I suspect that is the reason most people who have looked into it have abandoned the idea of integra

Re: Wicket play nicely with GWT

2008-05-13 Thread Igor Vaynberg
GWT RPC call can be a more *normal* > wicket object. > > I'm too new to Wicket to know if that is a reasonable path to try though. > > - Brill > > > > > > -Original Message- > From: Igor Vaynberg [mailto:[EMAIL PROTECTED] > Sent: T

RE: Wicket play nicely with GWT

2008-05-13 Thread Brill Pappin
nicely with GWT ((WebRequestCycle)RequestCycle.get()).getWebRequest().getHttpServletRequest( ).getSession() should get you the raw http session. -igor On Tue, May 13, 2008 at 7:23 PM, Brill Pappin <[EMAIL PROTECTED]> wrote: > Ok, I've read over several threads on Wicket+GWT and

RE: Wicket play nicely with GWT

2008-05-13 Thread Brill Pappin
that is a reasonable path to try though. - Brill -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 13, 2008 10:53 PM To: users@wicket.apache.org Subject: Re: Wicket play nicely with GWT ((WebRequestCycle)RequestCycle.get()).getWebRequest().getHttpSer

Re: Wicket play nicely with GWT

2008-05-13 Thread Igor Vaynberg
((WebRequestCycle)RequestCycle.get()).getWebRequest().getHttpServletRequest().getSession() should get you the raw http session. -igor On Tue, May 13, 2008 at 7:23 PM, Brill Pappin <[EMAIL PROTECTED]> wrote: > Ok, I've read over several threads on Wicket+GWT and know that are several > people us

Wicket play nicely with GWT

2008-05-13 Thread Brill Pappin
Ok, I've read over several threads on Wicket+GWT and know that are several people using the two together. I've got a nice clean setup that is working all except for one minor detail. The problem is that Wicket actually does the authentication and I store a token in the sessionStore, however I nee