Hi I am new to JBoss EAP 7.0.7! I am trying to deploy an ear file which was previously deployed in JBoss EAP 6.3. In the login page, it uses a form-based authentication with j_security_check. In my jboss-web.xml
, the security-domain is set with a valve with class-name org.apache.catalina.authenticator.SingleSignOn
.
The application works in JBoss EAP 6.3. I tried to debug it and noticed that it invokes a method from SingleSignOn
class as well as FormAuthenticator
class.
The problem is that the application does not work when deployed in JBoss EAP 7.0.7. And when I debug it, it does not seem to invoke the SingleSignOn and FormAuthenticator
methods. So how can I apply the same form-based authentication in JBoss EAP 7.0.7. (Note: I checked in the documentation and found out about the RH-SSO(Red Hat Single Sign On) but I cant download it.
Thanks in advance for your answer/suggestions.