RE: RE: How can i know when a users redirects to other page

2010-03-02 Thread Martin Asenov
l.com] Sent: Tuesday, March 02, 2010 12:35 PM To: users@wicket.apache.org Subject: Re: RE: How can i know when a users redirects to other page just answered what he was asking;-). Another thing is if this is the best solution for the use case. Maybe another possibility is to have a background job

Re: RE: How can i know when a users redirects to other page

2010-03-02 Thread Ernesto Reinaldo Barreiro
> > > > http://java.sun.com/javaee/5/docs/api/javax/servlet/http/HttpSessionListener.html > > > > Ernesto > > > > -- > View this message in context: > http://old.nabble.com/How-can-i-know-when-a-users-redire

Re: RE: How can i know when a users redirects to other page

2010-03-02 Thread Sergey Olefir
ocs/api/javax/servlet/http/HttpSessionListener.html > > Ernesto > -- View this message in context: http://old.nabble.com/How-can-i-know-when-a-users-redirects-to-other-page-tp27742803p27754252.html Sent from the Wicket - User

Re: RE: How can i know when a users redirects to other page

2010-03-02 Thread Ernesto Reinaldo Barreiro
n this? > > Thank you all for the help! > > Best regards, > Martin > > -Original Message- > From: Edward Zarecor [mailto:edw...@indeterminate.org] > Sent: Tuesday, March 02, 2010 1:46 AM > To: users@wicket.apache.org > Subject: Re: RE: How can i know when a

RE: RE: How can i know when a users redirects to other page

2010-03-01 Thread Martin Asenov
2010 1:46 AM To: users@wicket.apache.org Subject: Re: RE: How can i know when a users redirects to other page Would on session expiry be a better place to handle this? Implementation would be simple and you could avoid ever needing to regenerate a file if that is useful to you. It also natu

Re: RE: How can i know when a users redirects to other page

2010-03-01 Thread Edward Zarecor
Would on session expiry be a better place to handle this? Implementation would be simple and you could avoid ever needing to regenerate a file if that is useful to you. It also naturally handles the case where a user doesn't leave the page. Ed. On Mar 1, 2010 10:09 AM, "Martin Asenov" wrote:

Re: How can i know when a users redirects to other page

2010-03-01 Thread Riyad Kalla
ch 01, 2010 5:31 PM > To: users@wicket.apache.org > Subject: Re: How can i know when a users redirects to other page > > Just an idea... Use a component instantiation listener and "delete" the > file, if it exists, whenever any other page is created. > > Regards, > &

RE: How can i know when a users redirects to other page

2010-03-01 Thread Martin Asenov
Thank you all for the support, I highly appreciate it! Regards, Martin -Original Message- From: Ernesto Reinaldo Barreiro [mailto:reier...@gmail.com] Sent: Monday, March 01, 2010 5:31 PM To: users@wicket.apache.org Subject: Re: How can i know when a users redirects to other page Just

Re: How can i know when a users redirects to other page

2010-03-01 Thread Ernesto Reinaldo Barreiro
rs on page under a download link. I want to delete the file when the > user goes in another page. > > Regards, > Martin > > -Original Message- > From: Riyad Kalla [mailto:rka...@gmail.com] > Sent: Monday, March 01, 2010 4:31 PM > To: users@wicket.apache.org

RE: How can i know when a users redirects to other page

2010-03-01 Thread Martin Asenov
To: users@wicket.apache.org Subject: Re: How can i know when a users redirects to other page Martin can you explain your use-case, namely what is the importance of seeing which page a user is no-longer on? Seems like a super-easy way to do this would be to extend a base-page that updates a

Re: How can i know when a users redirects to other page

2010-03-01 Thread Riyad Kalla
Martin can you explain your use-case, namely what is the importance of seeing which page a user is no-longer on? Seems like a super-easy way to do this would be to extend a base-page that updates a Session metadata element with the current page the user is on and allow a listener to be notified wh

How can i know when a users redirects to other page

2010-03-01 Thread Martin Asenov
Hello, everyone! I was wondering if there's a way to know for instance if the user is on a page is there an event fired that indicates that the user is no longer on this page. I saw the method 'onRedirect()', but it's fired when the user comes to the page. I want to know when the user changes t