Re: Wicket recognized by ASF

2019-03-26 Thread Sebastien
Great!! :)


Re: Wicket recognized by ASF

2019-03-26 Thread Tobias Soloschenko
I think we should forward this to her. I am going to do so. 

kind regards

Tobias

> Am 26.03.2019 um 18:09 schrieb Andrea Del Bene :
> 
> They confused www.xbox-now.com with www.xbox.com :-)
> 
> On Tue, Mar 26, 2019 at 6:05 PM Martijn Dashorst 
> wrote:
> 
>> XBOX.com? Nice...
>> 
>> Martijn
>> 
>> On Tue, Mar 26, 2019 at 3:29 PM Andrea Del Bene 
>> wrote:
>>> 
>>> For its 20th birthday Apache Software Foundation celebrates by
>> recognizing
>>> 20 influential projects
>>> 
>>> https://opensource.com/article/19/3/apache-projects
>>> 
>>> --
>>> Andrea Del Bene.
>>> Apache Wicket committer.
>> 
>> 
>> 
>> --
>> Become a Wicket expert, learn from the best: http://wicketinaction.com
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>> 
>> 
> 
> -- 
> Andrea Del Bene.
> Apache Wicket committer.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Wicket recognized by ASF

2019-03-26 Thread Andrea Del Bene
They confused www.xbox-now.com with www.xbox.com :-)

On Tue, Mar 26, 2019 at 6:05 PM Martijn Dashorst 
wrote:

> XBOX.com? Nice...
>
> Martijn
>
> On Tue, Mar 26, 2019 at 3:29 PM Andrea Del Bene 
> wrote:
> >
> > For its 20th birthday Apache Software Foundation celebrates by
> recognizing
> > 20 influential projects
> >
> > https://opensource.com/article/19/3/apache-projects
> >
> > --
> > Andrea Del Bene.
> > Apache Wicket committer.
>
>
>
> --
> Become a Wicket expert, learn from the best: http://wicketinaction.com
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-- 
Andrea Del Bene.
Apache Wicket committer.


Re: Wicket recognized by ASF

2019-03-26 Thread Martijn Dashorst
XBOX.com? Nice...

Martijn

On Tue, Mar 26, 2019 at 3:29 PM Andrea Del Bene  wrote:
>
> For its 20th birthday Apache Software Foundation celebrates by recognizing
> 20 influential projects
>
> https://opensource.com/article/19/3/apache-projects
>
> --
> Andrea Del Bene.
> Apache Wicket committer.



-- 
Become a Wicket expert, learn from the best: http://wicketinaction.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Wicket recognized by ASF

2019-03-26 Thread Andrea Del Bene
For its 20th birthday Apache Software Foundation celebrates by recognizing
20 influential projects

https://opensource.com/article/19/3/apache-projects

-- 
Andrea Del Bene.
Apache Wicket committer.


Re: Ajax-Fileupload on an ebedded webpage

2019-03-26 Thread Ravi
Almost thought so. I guess we have to bite the bullet.

Thank you Sven!

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Redirect to an external page & inalidate the current session

2019-03-26 Thread Martin Grigorov
Hi,

On Mon, Mar 25, 2019 at 8:29 PM christophe 
wrote:

> Hello
>
> The application I am working on has an "exit" option that must
> 1) redirect the user to the corporate  web home page
> (www.thisCorporation.com)
> 2) invalidate the session so that no one,especially an unauthorized user,
> by
> clicking on the back button, would be able to get back to the application
>
> I have tried  the following:
>   cycle = currentPage.getRequestCycle();
>   cycle.setResponsePage(new
> RedirectPage("http://www.ThisCorporation.com;);
>
> It works however the session is still valid &  any one can get back to it
>
> So I have tried the following:
>   cycle = currentPage.getRequestCycle();
>   cycle.setResponsePage(new
> RedirectPage("http://www.ThisCorporation.com;);
>

Is this Wicket 1.3/1.4 ?


>  session.invalidate();
> This gets me a "page expired exception" instead
>
> Can someone help me with the correct way of doing both (redirecting &
> invalidating the session) please I have have spent hours on this for now
> satisfactory results
>

Try with:

session.invalidateNow();
throw new RedirectToUrlException("http://www.ThisCorporation.com;);


>
> Thank you
>
>
>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Redirect to an external page & inalidate the current session

2019-03-26 Thread Ernesto Reinaldo Barreiro
Hi,

How are you adding security/authorization to your pages?

On Mon, Mar 25, 2019 at 9:29 PM christophe 
wrote:

> Hello
>
> The application I am working on has an "exit" option that must
> 1) redirect the user to the corporate  web home page
> (www.thisCorporation.com)
> 2) invalidate the session so that no one,especially an unauthorized user,
> by
> clicking on the back button, would be able to get back to the application
>
> I have tried  the following:
>   cycle = currentPage.getRequestCycle();
>   cycle.setResponsePage(new
> RedirectPage("http://www.ThisCorporation.com;);
>
> It works however the session is still valid &  any one can get back to it
>
> So I have tried the following:
>   cycle = currentPage.getRequestCycle();
>   cycle.setResponsePage(new
> RedirectPage("http://www.ThisCorporation.com;);
>  session.invalidate();
> This gets me a "page expired exception" instead
>
> Can someone help me with the correct way of doing both (redirecting &
> invalidating the session) please I have have spent hours on this for now
> satisfactory results
>
> Thank you
>
>
>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-- 
Regards - Ernesto Reinaldo Barreiro