Re: How to use session

2009-08-29 Thread Gerald Fernando
Thomerson Thank You very much. I have done successfully from your idea. ThanksRegards, Gerald A On Fri, Aug 28, 2009 at 9:13 PM, Jeremy Thomerson jer...@wickettraining.com wrote: So, declare the constructor that you need to pass in the variable. It's okay to have multiple constructors.

Re: Broken URLs when app packaged as WAR

2009-08-29 Thread Major Péter
Maybe this helps you: http://www.coderanch.com/t/87915/Tomcat/tomcat-define-context-root-name How did you mounted your url's? How did you created your link to the newrun page? Regards, Peter 2009-08-28 20:24 keltezéssel, Arun Gupta írta: Created a Wicket application and runs fine using mvn

WicketFilter

2009-08-29 Thread Uwe Schäfer
Hi once in a while, i´d like to create a servlet (or worse) that can grab data from the wicket application. currently, i do it through singletons which feels quite dirty. i was wondering, if it would be possible to extend the WicketFilter, to offer a reference to anyone processing the

requestParameters and %20

2009-08-29 Thread Fernando Wermus
I am serving a file from disk which its name is red apple.jpg. From html source it renders as follows img src=a/b/c/d/red apple.jpg / I found that On method getUri() and a variable into requestParameters the image name has been translated to red%20apple.jpg new

Re: WicketFilter

2009-08-29 Thread Igor Vaynberg
map WicketSessionFilter in front of those servlets, you will get both Session.get() and Session.get().getApplication(), and Application.get() -igor 2009/8/29 Uwe Schäfer u...@thomas-daily.de: Hi once in a while, i´d like to create a servlet (or worse) that can grab data from the wicket

Re: Google App Engine and Wicket

2009-08-29 Thread Scott Swank
Here's a minor point that tripped me up. I have my WicketFilter mapped to a given path: filter-mapping filter-nameWicketFilter/filter-name url-pattern/evansforlv/*/url-pattern /filter-mapping And then when I start up my local app and browse to

Re: requestParameters and %20

2009-08-29 Thread James Carman
have you tried java.net.URLDecoder? On Sat, Aug 29, 2009 at 3:43 PM, Fernando Wermus fernando.wer...@gmail.comwrote: I am serving a file from disk which its name is red apple.jpg. From html source it renders as follows img src=a/b/c/d/red apple.jpg / I found that On method getUri() and a

Re: About getSignInPageClass() in AuthenticatedWebApplication class

2009-08-29 Thread liny
Hi, Has someone same requirement? I'd like to know how to solve it. Thank you ~ -- View this message in context: http://www.nabble.com/About-getSignInPageClass%28%29-in-AuthenticatedWebApplication-class-tp25199660p25208388.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: requestParameters and %20

2009-08-29 Thread Fernando Wermus
I thought that wicket may have some class for this situation isnt true? On Sat, Aug 29, 2009 at 10:45 PM, James Carman jcar...@carmanconsulting.com wrote: have you tried java.net.URLDecoder? On Sat, Aug 29, 2009 at 3:43 PM, Fernando Wermus fernando.wer...@gmail.comwrote: I am serving