Re: WicketStuff artifacts naming strategy

2011-06-29 Thread Harald Wellmann
For Maven OSGi bundle artifacts, there is a quasi-convention to have artifactId = Bundle-Symbolic name, so you would have groupId: org.wicketstuff artifactId: org.wicketstuff.foo.bar version: 1.5 Bundle-Symbolic-Name: org.wicketstuff.foo.bar JAR name: org.wicketstuff.foo.bar-1.5.jar Apache

Why RelativePathPrefixHandler calculates path from context path ?

2011-06-29 Thread Guillaume Mary
Hi all, I'm using Wicket 1.4.17 and my Wicket filter is mounted on a sub url of the context path (I declared /MyApp/* in the url-mapping of web.xml, important point). I use img src=resources/. directly in the markup, without a ResourceReference in the Java component, and suprisingly the

Re: Why RelativePathPrefixHandler calculates path from context path ?

2011-06-29 Thread Martin Grigorov
Hi, On Wed, Jun 29, 2011 at 11:26 AM, Guillaume Mary guillaume.m...@interview-efm.com wrote: Hi all, I'm using Wicket 1.4.17 and my Wicket filter is mounted on a sub url of the context path (I declared /MyApp/* in the url-mapping of web.xml, important point). I use img

close modal window message: Close the top-level modal window first

2011-06-29 Thread Mihai Toma
Hi, I have a problem when I try to close a modal window. The idea is that I have a ModalWindow created with setContent inside a ModalWindow created with getPageCreator and when I try to close with ModalWindow.closeCurren() the javascript alert appear with the message Close the top-level

Wicket 1.5-RC4.2 Session invalidate?

2011-06-29 Thread nino martinez wael
Hi This does not work at all, my session are newer cleared.. Am I doing something wrong or? add(new LinkVoid(logOut) { @Override public void onClick() { getSession().invalidate();

Re: Wicket 1.5-RC4.2 Session invalidate?

2011-06-29 Thread Martin Grigorov
Looks OK. Upgrade to RC5.1. It is fixed. On Wed, Jun 29, 2011 at 11:40 AM, nino martinez wael nino.martinez.w...@gmail.com wrote: Hi This does not work at all, my session are newer cleared.. Am I doing something wrong or?                add(new LinkVoid(logOut) {                        

RE: close modal window message: Close the top-level modal window first

2011-06-29 Thread Mihai Toma
I forgot to say that I use wicket 1.4.15 Hi, I have a problem when I try to close a modal window. The idea is that I have a ModalWindow created with setContent inside a ModalWindow created with getPageCreator and when I try to close with ModalWindow.closeCurren() the javascript alert

Re: Wicket 1.5-RC4.2 Session invalidate?

2011-06-29 Thread nino martinez wael
ahh did'nt see it was out.. 2011/6/29 Martin Grigorov mgrigo...@apache.org: Looks OK. Upgrade to RC5.1. It is fixed. On Wed, Jun 29, 2011 at 11:40 AM, nino martinez wael nino.martinez.w...@gmail.com wrote: Hi This does not work at all, my session are newer cleared.. Am I doing something

Re: Wicket 1.5-RC4.2 Session invalidate?

2011-06-29 Thread nino martinez wael
Yup it works after upgrading to rc5.1 2011/6/29 nino martinez wael nino.martinez.w...@gmail.com: ahh did'nt see it was out.. 2011/6/29 Martin Grigorov mgrigo...@apache.org: Looks OK. Upgrade to RC5.1. It is fixed. On Wed, Jun 29, 2011 at 11:40 AM, nino martinez wael

Configure http and https with apache and jboss

2011-06-29 Thread Vishal Popat
I am trying to configure my web app to use http and https. I am using the following code in my Application class: protected IRequestCycleProcessor newRequestCycleProcessor() { HttpsConfig config = new HttpsConfig(80, 443); return new MyHttpsRequestCycleProcessor(config); }

Re: Configure http and https with apache and jboss

2011-06-29 Thread nino martinez wael
If I had this problem to solve, I'd start off first by showing a html file in apache over https, and next step adding in wicket without https, and then joining them afterwards.. Asking both apache httpd forum and this one (as you've already done) If having problems.. As a last step, i'd write a

Re: new user registration email verification

2011-06-29 Thread Daniel Neugebauer
It's like you already said in your first mail. For one of our websites the behaviour is: 1) generate some kind of a random, unique token s.th. like UUID.randomUUID().toString() 2) register token to user in database 3) email link including the token to the user (use a readily available

Re: Configure http and https with apache and jboss

2011-06-29 Thread vp143
I have already tested html files containing http links and https links. I can navigate around these files including browser indicators saying the ssl cert is fine. For this I had to add DocumentRoot /var/www. The http part of the wicket website is working fine. I would like to try Jboss without

Re: new user registration email verification

2011-06-29 Thread Peter Ertl
Very nicely explained... In the special case when you need the confirmation link to register for a new user account I would additionally recommend the following: - Let the user enter the initial password for the account when he requests it - Send the link with the token like Daniel explained