Error during start of wicket application

2012-02-23 Thread André Schütz
Hello, I get the following error message during a start of the tomcat server with a clean packed wicket application: /** * BEGIN */ Exception in thread Thread-2 java.lang.NoClassDefFoundError: org/apache/wicket/ApplicationListenerCollection$2 at

Re: Multi Tab and Session

2012-02-29 Thread André Schütz
Hi, Page1 gets the click of the submit button and collects the search word. This will be changed into a hash value and set as PageParameter (q=Hashvalue) to the ResponsePage which is Page2. Additionally, I store the hash value into a session HashMap which holds the hash value as key and an own

Re: Multi Tab and Session

2012-03-01 Thread André Schütz
in detach(): in the most recent page the variable remains not-null; if the session has intermediate requests for other pages, the variable is null when next accessed. Good luck, Dan 2012/2/29 André Schütz andre-p...@gmx.de Hi, Page1 gets the click of the submit button

Re: Multi Tab and Session

2012-03-01 Thread André Schütz
pages, the variable is null when next accessed. Good luck, Dan 2012/2/29 André Schütz andre-p...@gmx.de Hi, Page1 gets the click of the submit button and collects the search word. This will be changed into a hash value and set as PageParameter (q=Hashvalue

Component not found after AjaxSelfUpdatingTimerBehavior

2012-03-03 Thread André Schütz
Hi, I have two Tabs in the same browser where the same application is running. The scope is different but the session is the same. When I make a call to my application at Page1 in Tab1 and get the results In Page2, everything is fine. The problem occurs when I make parallel calls in the two

Component not found after AjaxSelfUpdatingTimerBehavior

2012-03-03 Thread André Schütz
Hi, I have two Tabs in the same browser where the same application is running. The scope is different but the session is the same. When I make a call to my application at Page1 in Tab1 and get the results In Page2, everything is fine. The problem occurs when I make parallel calls in the two

Re: Links with old PageID do not work

2012-03-08 Thread André Schütz
Hi, I will check this once more. If I can not find a solution, I will create a quickstart for further debugging. Andre Original-Nachricht Datum: Thu, 8 Mar 2012 09:24:55 +0200 Von: Martin Grigorov mgrigo...@apache.org An: users@wicket.apache.org Betreff: Re: Links with old

StackOverflow while getting browser info

2012-03-13 Thread André Schütz
Hi, I have the following code in my MyApplication class: {CODE} public void init() { super.init(); getRequestCycleSettings().setGatherExtendedBrowserInfo(true); getResourceSettings().setThrowExceptionOnMissingResource(false); ... } public Session newSession(Request request,