You bet!
:-)
public class MembersAuthenticator extends AbstractAuthenticator {
protected MembersAuthenticator(String type) {
super(type);
System.out.println("\nMembersAuthenticator() " + type);
}
@Override
public LdapPrincipal authenticate(BindOperationContext
bindOperationContext) throws Exception {
System.out.println("\nMembersAuthenticator.authenticate() " +
bindOperationContext.getName());
return null;
}
@Override
public String getAuthenticatorType() {
System.out.println("\nMembersAuthenticator.getAuthenticatorType() " +
super.getAuthenticatorType());
return super.getAuthenticatorType();
}
@Override
public DirectoryService getDirectoryService() {
System.out.println("\nMembersAuthenticator.getDirectoryService() " +
super.getDirectoryService());
return super.getDirectoryService();
}
}
-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of
Kiran Ayyagari
Sent: Tuesday, August 03, 2010 12:12 PM
To: Apache Directory Developers List
Subject: Re: Startup Error for Embedded ApacheDS Created by ApacheDS archetype
hi Roy,
On Wed, Aug 4, 2010 at 12:31 AM, Benjamin, Roy <[email protected]> wrote:
> Hi Kiran,
>
> I've been trying the example.
>
> I also thought it possible that the Authenticator I have could be the problem.
> So I also ran the same example using other built in Authenticators. Always
> the
> same bind problem.
is it possible to show us the code of your authenticator?
Kiran Ayyagari