Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 925603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:32:46+00:00 2026-05-15T19:32:46+00:00

When I click on link 1 and then, before the response was received, click

  • 0

When I click on link 1 and then, before the response was received, click on link 2 on the same page, I get a “Page Expired” error from Wicket. Is Wicket conceptional capable to do such a concurrent processing?

Any ideas why Wicket loses the session (it seems to reside on tomcat though)?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T19:32:47+00:00Added an answer on May 15, 2026 at 7:32 pm

    To answer the question myself: It seems like Wicket has no problem to process a second link click while the first is still beeing processed. I tried it with the following example.

    import java.util.logging.Level;
    import java.util.logging.Logger;
    import org.apache.wicket.markup.html.WebPage;
    import org.apache.wicket.markup.html.basic.Label;
    import org.apache.wicket.markup.html.link.Link;
    import org.apache.wicket.model.IModel;
    import org.apache.wicket.model.Model;
    
    public class ConcurrentClickPage extends WebPage {
    
        public ConcurrentClickPage() {
            final IModel<String> model = new Model<String>("initial");
            Label status = new Label("status", model);
            add(status);
            add(new Link("link1"){
                @Override
                public void onClick() {
                    try {
                        Thread.sleep(3000);
                    } catch (InterruptedException ex) {
                        Logger.getLogger(ConcurrentClickPage.class.getName()).log(Level.SEVERE, null, ex);
                    }
                    model.setObject("link 1 clicked");
                }
            });
            add(new Link("link2"){
                @Override
                public void onClick() {
                    model.setObject("link 2 clicked");
                }
            });
        }
    
    }
    

    And the corresponding html page:

    <html>
      <body>
          <span wicket:id="status">text</span>
          <p>
              <a href="#" wicket:id="link1">Link 1 (deferred processing)</a><br/>
              <a href="#" wicket:id="link2">Link 2</a>
          </p>
      </body>
    </html>
    

    When I click on link 1 and click on link 2 while waiting on the response of link 1, everything is fine and I get no “page expired” error.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've seen on sites before, when you click a link there is a fade
When a user have changed something in a form, then clicks on any link
I got this flash application where you can click a link while watching a
I'm working on some JQuery to hide/show some content when I click a link.
User click on a link button and it will direct them to a url
Heres my link: http://tinyurl.com/6j727e If you click on the link in test.php, it opens
I'm trying to click on a link using jquery. There only appears to be
I have a div where I click on a link to slideDown. As expected
I'm implementing click tracking from various pages in our corporate intranet in order to
I have a situation where my page loads some information from a database, which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.