Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Johan Compagner
Why not do it a bit more reliable? for example when you go back use a piece of javascript: window.opener.location.href = "bookmarkable url" or get the window name from the window.opener.name? (in the popup or when you open the popup) and use that as the target. The only problem that could be i

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Marc-Andre Houle
pp refer to page parameters that I get in the pop up Here is the context : The bookmarkable page link will be open in the window that open the pop up. This code is in the pop-up. The problem is when I have done that : bpl.setPageMap (PageMap.forName (parentPageMap)); It will create a new p

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Johan Compagner
On 1/24/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Ok, I got news about the first page expired problem. Problems with page map that I said before and in the JIRA issue are still there, but the page expire is gone. Here is why : In the pop up, I created a bookmarkable page link like this :

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Marc-Andre Houle
Ok, I got news about the first page expired problem. Problems with page map that I said before and in the JIRA issue are still there, but the page expire is gone. Here is why : In the pop up, I created a bookmarkable page link like this : String parentPageMap = "wicket:default"; if(pp != null)

Re: [Wicket-user] Tracking session expire exception

2007-01-24 Thread Marc-Andre Houle
Is anything new about this? I also want to know how it is about this issue : https://issues.apache.org/jira/browse/WICKET-206 Thanks. Marc On 1/22/07, Johan Compagner <[EMAIL PROTECTED]> wrote: yes i see it, will look it at asap On 1/22/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: > > I t

Re: [Wicket-user] Tracking session expire exception

2007-01-22 Thread Johan Compagner
yes i see it, will look it at asap On 1/22/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: I think the mail didn't pass through sf.net. So, I try again. Marc On 1/16/07, Marc-Andre Houle < [EMAIL PROTECTED]> wrote: > > Here is the example. > Open two tabs with the same page, in each one of t

Re: [Wicket-user] Tracking session expire exception

2007-01-22 Thread Marc-Andre Houle
I think the mail didn't pass through sf.net. So, I try again. Marc On 1/16/07, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Here is the example. Open two tabs with the same page, in each one of them, click on page 2, and see the page map being the same :) Marc P.S. : I included only the sour

Re: [Wicket-user] Tracking session expire exception

2007-01-16 Thread Johan Compagner
Now, the output look like this : I access the index page first time : index Page map is :null correct. I access the index page from another tab : index Page map is :null index Page map is :wicket-0 correct. First is rendered in default pagemap. Then we detect a new window and do a bookmark

Re: [Wicket-user] Tracking session expire exception

2007-01-16 Thread Nino Wael
icket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Tracking session expire exception Let's make a demo of what I presently don't understand : In a quickstart, have a page that only do this : System.out.println ("index Page map is :" + getPageMap ().getN

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
t; first ajaxlink I click will made the session to expire. Nothing can be > > > > done, it even didn't pass in the onClick method of the ajaxLink. There is > > > > no other error in the log, only loadingthe expired page > > > > > > > > Mar

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
ere is no other > > > error in the log, only loadingthe expired page > > > > > > Marc > > > > > > On 1/15/07, Nino Wael < [EMAIL PROTECTED]> wrote: > > > > > > > Hmm, we had to track something similar. Could you describe what

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Nick Heudecker
learing the pagemap and > > > the same time referencing to the cleared page. Also we have a problem where > > > we loose our session's id. > > > > > > > > > > > > Regards Nino > > > > > > > > > -

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
learing the pagemap and > > the same time referencing to the cleared page. Also we have a problem where > > we loose our session's id. > > > > > > > > Regards Nino > > > > > > ---------- > > > > *From:* [EMAIL PROTECTED]

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
ere we > loose our session's id. > > > > Regards Nino > > > -- > > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] * On Behalf Of *Marc-Andre > Houle > *Sent:* 15. januar 2007 15:35 > *To:* wicket-user@lists.sourceforge.net > *Subject:*

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
--- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] *On Behalf Of *Marc-Andre Houle *Sent:* 15. januar 2007 15:35 *To:* wicket-user@lists.sourceforge.net *Subject:* [Wicket-user] Tracking session expire exception Is there somebody here that had to track in his application wh

Re: [Wicket-user] Tracking session expire exception

2007-01-15 Thread Nino Wael
Nino From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Marc-Andre Houle Sent: 15. januar 2007 15:35 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Tracking session expire exception Is there somebody here that had to track in his application why the session e

[Wicket-user] Tracking session expire exception

2007-01-15 Thread Marc-Andre Houle
Is there somebody here that had to track in his application why the session expire? I'm in need of some "hint" on how to efficiently find the damn thing that have made the session expire abruptly. Surely somebody have done something about that! :) Marc ---