Re: Auto-reloading markup during development

2014-11-23 Thread Thorsten Schöning
Guten Tag mscoon, am Samstag, 22. November 2014 um 21:44 schrieben Sie: Is it possible to set wicket to reload markup and other resources during development so that one does not need to redeploy-restart the server in order to see their changes? From my understanding this should work

Re: Auto-reloading markup during development

2014-11-23 Thread Martin Grigorov
Hi, On Sun, Nov 23, 2014 at 11:46 AM, Thorsten Schöning tschoen...@am-soft.de wrote: Guten Tag mscoon, am Samstag, 22. November 2014 um 21:44 schrieben Sie: Is it possible to set wicket to reload markup and other resources during development so that one does not need to redeploy-restart

Re: Bes practice for deployment to avoid ClassNotFoundException

2014-11-23 Thread Martin Grigorov
Hi, You are experiencing Tomcat Session Persistence - http://tomcat.apache.org/tomcat-7.0-doc/config/manager.html#Persistence_Across_Restarts Just disable it for development to avoid such kind of problems. I'd also recommend to use Jetty for development if possible. It is much faster to restart.

Re: Bes practice for deployment to avoid ClassNotFoundException

2014-11-23 Thread Thorsten Schöning
Guten Tag Martin Grigorov, am Sonntag, 23. November 2014 um 11:22 schrieben Sie: You are experiencing Tomcat Session Persistence - http://tomcat.apache.org/tomcat-7.0-doc/config/manager.html#Persistence_Across_Restarts Just disable it for development to avoid such kind of problems. But the

Re: Bes practice for deployment to avoid ClassNotFoundException

2014-11-23 Thread Martin Grigorov
Hallo Thorsten, On Sun, Nov 23, 2014 at 1:02 PM, Thorsten Schöning tschoen...@am-soft.de wrote: Guten Tag Martin Grigorov, am Sonntag, 23. November 2014 um 11:22 schrieben Sie: You are experiencing Tomcat Session Persistence -

Re: Bes practice for deployment to avoid ClassNotFoundException

2014-11-23 Thread Thorsten Schöning
Guten Tag Martin Grigorov, am Sonntag, 23. November 2014 um 12:20 schrieben Sie: 4) you start Tomcat and it tries to load the persisted sessions 4.1) Since Wicket stores its data as org.apache.wicket.pageStore.DefaultPageStore.SerializedPage (a triple of pageId (int) / sessionId (String) /

Applet jdialog confirmed value to wicket page

2014-11-23 Thread rbangaru
I call an photo taking applet contained html from wicket page,after pic taker approves based on the applet's JDialaog confirmation, I need to get back to wicket page, If user does not confirm he needs to stay in applet only. any ideas please -- View this message in context:

Re: Auto-reloading markup during development

2014-11-23 Thread mscoon
You are both right, thank you for your answers. I'm not sure what I was doing wrong, but I tried again and markup files are being reloaded. On Sun, Nov 23, 2014 at 11:56 AM, Martin Grigorov mgrigo...@apache.org wrote: Hi, On Sun, Nov 23, 2014 at 11:46 AM, Thorsten Schöning

Re: How to suppress AJAX Debug JS

2014-11-23 Thread Martin Grigorov
Hi, The Ajax debug window should not appear in deployment mode at all. On Thu, Nov 20, 2014 at 3:07 PM, Christian Smolka christian.smo...@etecture.de wrote: Hi @all! I'm using 6.18 and I'm in deployment mode and I already called this.getDebugSettings().setAjaxDebugModeEnabled(false);

Re: Wicket and microdata

2014-11-23 Thread Martin Grigorov
Hi, On Thu, Nov 20, 2014 at 7:03 AM, Hendy Irawan he...@soluvas.com wrote: Hi Dirk and Martin, Dirk Forchel wrote Martin Grigorov-4 wrote Another way is to add these attributes directly in the markup. No need to add Behavior to the components for something that is always true.

RE: Question on Double Submit and rendering strategy

2014-11-23 Thread Hesketh, Mark
Hi Please give more details what you try to avoid exactly by making changes in this area. [MH] Hello again, [MH] Well, I'm trying to avoid Double Submit through repeatedly button clicking (or submitting a form). We're currently [MH] porting all our web applications to Wicket. We have had to