Re: 1.4 version of IRequestCycleListener?

2018-08-01 Thread Sven Meier
Hi, there's no direct equivalent in 1.4. Your WebApplication#newRequestCycleProcessor() could provide a processor subclass, doing some extra stuff before delegating to the super implementation. But you're probably better off just using a custom servlet filter. Have fun Sven Am 01.08.2018

1.4 version of IRequestCycleListener?

2018-08-01 Thread Entropy
In our Wicket 6 projects, we have a IRequestCycleListener that does some things we want to do for every request (primarily involving auditing and a few other nits). We also have a couple 1.4 apps that we haven't been given permission to upgrade, but we want to add this same auditing listener. Is