Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
The problem was solved. When I deployed Custom Authentication Provider and set the Control Flag to "SUFFICIENT" while control flag for Default Weblogic Authentication Provider was set to "REQUIRED" (by default). This give error and return failed value when validating user login. Custom Authentication Provider passed, but Default Weblogic Authentication Provider was not. Fixing it by set control flag for both to "SUFFICIENT"! – netic Jul 22 '09 at 3:19
You should post this comment as answer and accept it as the right answer. – Pascal Thivent Oct 7 '09 at 3:55

1 Answer

up vote 1 down vote accepted

As commented. I post this as answer to my own question as it solved my problem.

The problem was solved. When I deployed Custom Authentication Provider and set the Control Flag to "SUFFICIENT" while control flag for Default Weblogic Authentication Provider was set to "REQUIRED" (by default). This give error and return failed value when validating user login. Custom Authentication Provider passed, but Default Weblogic Authentication Provider was not. Fixing it by set control flag for both to "SUFFICIENT"!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.