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

Greetings,

I'm trying to programmatically login through the provider in weblogic security realm from a servlet using this code:

    CallbackHandler handler = new URLCallbackHandler(userName, password);

    Subject subject = Authentication.login(handler);
    ServletAuthentication.runAs(subject, request);

These apis I've found in wls-api.jar (and weblogic.jar) in weblogic 10.3.4.

However,

compiling gives error:

cannot access weblogic.security.acl.internal.AuthenticatedSubject
    [javac] class file for weblogic.security.acl.internal.AuthenticatedSubject not found
    [javac]         ServletAuthentication.runAs(subject, request);

Now i find the package weblogic.security.acl.internal in the weblogic.jar (not the wls-api.jar) The class is not in either of them. Anyone know where i get them, or if i'm doing this wrong?

share|improve this question

1 Answer

up vote 0 down vote accepted

Found it, it's in

com.bea.core.weblogic.security.identity.jar in the Middleware/modules directory

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.