I am working on migrating Weblogic custom Authentication provider from version 8.1.5 to 9.2.3
In login servelet I have the following code
ServletAuthentication sa = new ServletAuthentication(LOGIN_USERNAME_LABEL, LOGIN_PASSWORD_LABEL);
int authenticated = sa.weak(request, response);
Above code always return
ServletAuthentication.FAILED_AUTHENTICATION
instead of
ServletAuthentication.AUTHENTICATED
I debug through the implementation modules, all values passing from form and values returned form database were all correct, but result of weak() is not correct.
Anyone resolved similar issue before? any help will be appreciated.