abiuan
abiuan
Unfortunately _ClickFeatureHandler_ works only on WFS layers and, obviously, is quite different from _ClickHandler_, because features are already on the client. In case of WMS layer there is only an...
I tool a look to the sources and I didn't found a good sample to follow. All methods are simple getters or setters. In this case the problem is different...
Thanks, works fine. Now I have another issue. I'm using google as authentication provider and I have to implement a logout button. I'm trying to use AuthenticatedWebSession.get().invalidate() but I get...
Thanks Marc, I did more investigations with a fresh demo wicket application, built starting from wicket "Quick Start Wizard", adding spring-boot dependencies. In this application I do not have a...
Unfortunately AuthenticatedWebSession.isSignedIn() and .signIn are final. I checked the SecurityContextHolder in the constructor of my homepage and it has authentication info with the correct username and roles. I also modified...
Hello, I created a custom AuthenticatedWebSession as you suggested, grabbing code from _org.apache.wicket.authroles.authentication.AuthenticatedWebSession_ and _com.giffing.wicket.spring.boot.starter.configuration.extensions.external.spring.security.SecureWebSession_ sources. I added a debug statement for every method. As you can see the only...
Hello, following your suggest I created the `ExternalSecureWebSession` class extending `AbstractAuthenticatedWebSession` and registered in the `WebSecurityConfigurerAdapter`. Now it works fine. You helped me a lot. Many thanks. ``` public class...