Re: Set Wicket User Session to Servlet's HttpSession

2012-02-10 Thread Nelson Segura
So this means that wicket session cannot be accessed from non wicket request? I tried to call Session.get().bind() before doing anything with the session, but it gives me the same error. Notice this is called in Session.get(), so I cant really call bind. This was working with no problems in Wicket

Re: Set Wicket User Session to Servlet's HttpSession

2012-02-06 Thread Kayode Odeyemi
On Mon, Feb 6, 2012 at 7:18 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, On Sat, Feb 4, 2012 at 3:25 PM, Kayode Odeyemi drey...@gmail.com wrote: Hi, thanks. On Fri, Feb 3, 2012 at 8:05 PM, Serban.Balamaci thespamtr...@gmail.com wrote: Hello, It's not really clear what you

Re: Set Wicket User Session to Servlet's HttpSession

2012-02-06 Thread Martin Grigorov
Hi, As I answered in the ticket - RequestCycle is not created for non-Wicket requests. It will be always 'null'. On Mon, Feb 6, 2012 at 11:15 AM, Kayode Odeyemi drey...@gmail.com wrote: On Mon, Feb 6, 2012 at 7:18 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, On Sat, Feb 4, 2012 at

Re: Set Wicket User Session to Servlet's HttpSession

2012-02-05 Thread Martin Grigorov
Hi, On Sat, Feb 4, 2012 at 3:25 PM, Kayode Odeyemi drey...@gmail.com wrote: Hi, thanks. On Fri, Feb 3, 2012 at 8:05 PM, Serban.Balamaci thespamtr...@gmail.comwrote: Hello, It's not really clear what you mean and maybe you need to tell us what you want to do. I want to use servlet

Re: Set Wicket User Session to Servlet's HttpSession

2012-02-04 Thread Kayode Odeyemi
Hi, thanks. On Fri, Feb 3, 2012 at 8:05 PM, Serban.Balamaci thespamtr...@gmail.comwrote: Hello, It's not really clear what you mean and maybe you need to tell us what you want to do. I want to use servlet session object for user authentication and not wickets'. A Wicket session stores

Set Wicket User Session to Servlet's HttpSession

2012-02-03 Thread Kayode Odeyemi
Hi, Is servlet HttpSession same as Wicket Session? If not, because I prefer HttpSession, how do I make wicket make use of HttpSession (server session)? Thanks -- Odeyemi 'Kayode O. http://www.sinati.com. t: @charyorde

Re: Set Wicket User Session to Servlet's HttpSession

2012-02-03 Thread Serban.Balamaci
Hello, It's not really clear what you mean and maybe you need to tell us what you want to do. A Wicket session stores it's attributes into an implementation of the ISessionStore interface, but the default the store is HttpSessionStore, so the HttpSession. On the other hand, the wicket session can