Is it happening in all the browsers?

Have you tried the scenarios as given below in your application to
reproduce the same issue in your machine or the development server?

Scenario:  Open certain set of application pages simultaneously by clicking
the links (other links), do not stop until you reach at least 50 to 100
clicks.

Example: let's say DashboardPage, PersonProfilePage, AddressPage,
EmploymentRelatedPage, SomeXYZPage from the Home Page or somewhere from the
application. Just load them simultaneously



Wicket 5 PageStoreManager preserves certain number of page versions and
destroying others from its List<IManageablePage>. If your application
stores those pages in List<IManageablePage> then they may not be available
in your session ( in heavy load).  Debug  “PageStoreManager” for more
details.


Try the below code snippet where your application expecting page from the
session if the above scenario helps you to reproduce the issue.



 if (Session.get().getPageManager().getPage(page.getPageId()) == null) {

    Session.get().getPageManager().touchPage(page);

 }


   Or (preserves  always)


Session.get().getPageManager().touchPage(page);





On Sun, Sep 24, 2017 at 3:02 AM, trlt <trl...@gmail.com> wrote:

> The wicket applications are authenticated using Single Sign On (so yes,
> there
> are other cookies set by the SSO group). The Bookmarkable links seem to be
> working fine, but all other links become expired. Again, the only way to
> get
> out is to clear the browser's cache. This problem happens intermittently
> and
> only happens to a handle of users which makes the debugging harder.
>
> Any suggestion is greatly appreciated. Thanks!
>
> --
> Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-
> f1842947.html
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

Reply via email to