On Wed, Aug 4, 2010 at 1:27 AM, Benjamin, Roy <[email protected]> wrote:
> You bet!
>
> :-)
>
> public class MembersAuthenticator extends AbstractAuthenticator {
>
> protected MembersAuthenticator(String type) {
> super(type);
ahhh, I see, this must be a old version of AbstractAuthenticator, the
new AbstractAuthenticator
(from the 1.5.8-SNAPSHOT) constructor takes a AuthenticationLevel
AbstractAuthenticator( AuthenticationLevel type ) so the above code should be
protected MembersAuthenticator(AuthenticationLevel type) {
super(type);
....
this is the reason why your authenticator is not recognized. I guess
you must be developing and deploying with different versions.
> 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
>
Kiran Ayyagari