wicket « Session « Java Enterprise Q&A





1. Wicket session Expiration    stackoverflow.com

i am using a class for session which extends org.apache.wicket.protocol.http.WebSession; i need a method to be called when this session expires as a consequence of logging out or time out. but i ...

2. Wicket: how to synchronize requests within session    stackoverflow.com

Scenario: Apache Wicket based web application running on Tomcat server. User opens URL in browser, session is created and simple main page is shown in browser, user clicks on button and ...

3. How do you set a custom session when unit testing with wicket?    stackoverflow.com

I'm trying to run some unit tests on a wicket page that only allows access after you've logged in. In my JUnit test I cannot start the page or render ...

4. How to enforce a 5-minute per post rule in a session object in Java?    stackoverflow.com

I'm trying to figure out how to enforce a 5 minute per post/action rule. I'm developing a web application with Wicket in Java and I've got a session class which I ...

5. Override Session timeout at runtime in wicket    stackoverflow.com

How can I override session timeout interval during the runtime. Basically at the time of login, user is given an option if wants to be logged in for specific hours say(7). ...

6. How to develop one session - multiple window applications in wicket?    stackoverflow.com

How to develop an intranet application using wicket which is able to deal with multiple windows within one common seesion? The multiple windows should work/be used independently (but sharing a common session, ...

7. How to handle session timeout with wicket ajax requests?    stackoverflow.com

How can I handle a session-timeout when doing an ajax request with wicket? Currently (e.g. using an AbstractAjaxTimerBehavior) the user is redirected to the session expired page. I would like to handle ...

8. EJB3 injection is Null in Wicket AuthenticateWebSession    stackoverflow.com

I'm using Wicket + EJB3 in an application and I face a problem but I can't find any topic related, so here it is: I'm using Wicket authentication, and need to use ...

9. session handling for request object in wicket framework    stackoverflow.com

1) i have added an element in request object given below, i need to get/read this in my webpage, how can i do it?

<input type="hidden"> wicket:id="submitted" value="false" />
eg: in servlet, use ...





10. Session values not stored in wicket application using Chrome    stackoverflow.com

Our wicket application has the following scenario:

  • save myValue in the session
  • redirect the user to an external page
  • the external pages redirects back to our webapp after the user entered some data
  • read myValue ...

11. accessing session value in wicket    stackoverflow.com

I am new to wicket.I have scenario that I have to use modal window that contains panel and onButtonSubmit of panel component I am calling the OnButtonSubmit of page on which modal ...