Re: [Wicket-user] Session management

2006-08-28 Thread Janne Hietamäki
On 28.8.2006, at 10.53, Nino Wael wrote: Hi I was wondering how wicket maintains it’s session state. We are currently working on a crossbrowser application, where our application(wicket) lives within an Iframe. If we hit refresh on the page, wicket looses its session id. As far as I can see wicket

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Session management On 28.8.2006, at 10.53, Nino Wael wrote: Hi I was wondering how wicket maintains its session state. We are currently working on a crossbrowser application, where our application(wicket) lives

Re: [Wicket-user] Session management

2006-08-28 Thread Janne Hietamäki
: [Wicket-user] Session management    On 28.8.2006, at 10.53, Nino Wael wrote:Hi I was wondering how wicket maintains it’s session state. We are currently working on a crossbrowser application, where our application(wicket) lives within an Iframe. If we hit refresh on the page, wicket looses its

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
PROTECTED]] On Behalf Of Janne Hietamäki Sent: 28. august 2006 09:56 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Session management On 28.8.2006, at 10.53, Nino Wael wrote: Hi I was wondering how wicket maintains its session state. We are currently

Re: [Wicket-user] Session management

2006-08-28 Thread Janne Hietamäki
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Janne Hietamäki Sent: 28. august 2006 10:06 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Session management   Session cookie expires when browser is shut down, but on the server side the default is 30 minutes. This can

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
] [mailto:[EMAIL PROTECTED] On Behalf Of Janne Hietamäki Sent: 28. august 2006 10:06 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Session management Session cookie expires when browser is shut

Re: [Wicket-user] Session management

2006-08-28 Thread Johan Compagner
you could use the FireFox plugin Tamper Data and look what is sent to wicket.See if the session cookie is sent to the server yes or no.johanOn 8/28/06, Nino Wael [EMAIL PROTECTED] wrote: Our problem is that every time you hit the refresh, wicket apparently looses track of session. And creates a

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
.jpg regards Nino From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johan Compagner Sent: 28. august 2006 10:49 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Session management you could use the FireFox plugin Tamper Data

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
@lists.sourceforge.net Subject: Re: [Wicket-user] Session management Im using Paros, trying out the plugin for firefox. But as far as I can see Wicket asks to set a new session(initial page): http://img181.imageshack.us/my.php?image=session1pq3.jpg second hit: http

Re: [Wicket-user] Session management

2006-08-28 Thread Janne Hietamäki
Hietamäki Sendt: ma 28-08-2006 10:34 Til: wicket-user@lists.sourceforge.net Cc: Emne: Re: [Wicket-user] Session management What kind of problems do you really have? May be you should check this http://www.wicket-wiki.org.uk/wiki/index.php

Re: [Wicket-user] Session management

2006-08-28 Thread Korbinian Bachl
Betreff: Re: [Wicket-user] Session management I see the problem, as a default firefox actually allows 3rd party cookies. But we are targeting IE 6(SP2) which does not by default allow 3rd party cookies. Thanks for your mail. Regards Nino -Original Message- From: [EMAIL PROTECTED

Re: [Wicket-user] Session management

2006-08-28 Thread Nino Wael
Hietamäki Sent: 28. august 2006 13:17 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Session management If the page and the iframe content does not originate from the same server the browser security settings can cause the cookies are not accepted. For example on firefox setting

Re: [Wicket-user] session management

2005-11-26 Thread Manuel Corrales
Ok, this worked ok. Now i have a question, what kind of verification should i do on checkAccess(), and if i inherits AuthenticatedWebPage, what that do to my pages??

Re: [Wicket-user] session management

2005-11-26 Thread Igor Vaynberg
any kind of verification you want. thats your business logic. you have access to the session so you can pull the user from that.-IgorOn 11/26/05, Manuel Corrales [EMAIL PROTECTED] wrote: Ok, this worked ok. Now i have a question, what kind of verification should i do on checkAccess(), and if i

Re: [Wicket-user] session management

2005-11-22 Thread Manuel Corrales
I have this session: public final class UserSession extends WebSession { private Usuario user; /** * Constructor. * @param app */ public UserSession(Application app) { super(app); } /** * * @return true si existe un usuario logeado. */ public boolean isSignedIn() { if (user

Re: [Wicket-user] session management

2005-11-22 Thread Igor Vaynberg
Looks right-IgorOn 11/22/05, Manuel Corrales [EMAIL PROTECTED] wrote: I have this session: public final class UserSession extends WebSession { private Usuario user; /** * Constructor. * @param app */ public UserSession(Application app) { super(app); } /** * * @return true si

Re: [Wicket-user] session management

2005-11-21 Thread Eelco Hillenius
You could best take a look at the sign-in example of wicket-examples. It has a custom session - which can be used to store information you want to keep during the whole user session - and it has an example of how to prevent access/ redirect to a login page for a non logged on user. Eelco On

Re: [Wicket-user] session management

2005-11-21 Thread Igor Vaynberg
On 11/21/05, Manuel Corrales [EMAIL PROTECTED] wrote: Hi, i've asked this question once but dont get a solution. So here i go again:Sorry, must've missed it. I have some clues about stateful beans and stateless beans but not too much. What i need is that when a user logins, create an object and

Re: [Wicket-user] Session Management

2005-08-07 Thread Juergen Donnerstag
That is not a matter of Wicket (Struts, Webwork). You have to configure the servlet container (jetty, tomcat, etc) Juergen On 8/7/05, David Liebeherr [EMAIL PROTECTED] wrote: Hi all! How can i set wicket to only use URL-Rewriting for sessions rather than cookies no matter if the browser