Re: Localizer in a new Thread

2010-09-02 Thread Fernando Wermus
} }); This will ensure that Application is accessible from within newly created thread. Alex -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Localizer-in-a-new-Thread-tp2307306p2307732.html http://apache-wicket.1842946.n4

SV: Localizer in a new Thread

2010-07-30 Thread Wilhelmsen Tor Iver
To clarify, I want to use Localizer#getString(...) in a thraed I create. I have seen other posts on this issue, but haven't been able to figure out the solution. The Localizer.getString() looks for its messages in Wicket's property file structure, which depends on Application, the

RE: Localizer in a new Thread

2010-07-30 Thread Alex Objelean
this message in context: http://apache-wicket.1842946.n4.nabble.com/Localizer-in-a-new-Thread-tp2307306p2307732.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

RE: Localizer in a new Thread

2010-07-30 Thread Warren Bell
@wicket.apache.org Subject: SV: Localizer in a new Thread To clarify, I want to use Localizer#getString(...) in a thraed I create. I have seen other posts on this issue, but haven't been able to figure out the solution. The Localizer.getString() looks for its messages in Wicket's property file structure

Re: Localizer in a new Thread

2010-07-30 Thread Fernando Wermus
() { @Override public void run() { //do stuff } }); This will ensure that Application is accessible from within newly created thread. Alex -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Localizer-in-a-new-Thread

Re: Localizer in a new Thread

2010-07-30 Thread Alex Objelean
.1842946.n4.nabble.com/Localizer-in-a-new-Thread-tp2307306p2307732.htmlhttp://apache-wicket.1842946.n4.nabble.com/Localizer-in-a-new-Thread-tp2307306p2307732.html?by-user=t Sent from the Wicket - User mailing list archive at Nabble.com

Localizer in a new Thread

2010-07-29 Thread Warren Bell
I want to take advantage of Wicket's message localization in a new thread I have created. I am trying to pass the localizer to a thread that runs background tasks. I am geting an org.apache.wicket.WicketRuntimeException: There is no application attached to current thread I am sure I am going

RE: Localizer in a new Thread

2010-07-29 Thread Warren Bell
To: users@wicket.apache.org Subject: Localizer in a new Thread I want to take advantage of Wicket's message localization in a new thread I have created. I am trying to pass the localizer to a thread that runs background tasks. I am geting an org.apache.wicket.WicketRuntimeException