Authentication not works.
Env:
jdk 1.8.0_152
wildfly 11
maven 3.5
Project:
parent pom project with wildfly bom and picketlink bom
modules: ear, ejb, war
In war project
1) added dependencies to jsf, cdi, pickitlink
2) added all from jboss-picketlink-quickstarts/picketlink-authentication-form-with-jsf/
project successfully compiled, packaged and run with wildfly plugin
pages shown correctly
but without authentication
no form
no log messages
a have added logger.info into HttpSecurityConfiguration
...
public void onInit(@Observes SecurityConfigurationEvent event) {
logger.info("111");
SecurityConfigurationBuilder builder = event.getBuilder();
...
but no messages in log
What could I miss?
Thanks!