Gabe Wong wrote:
>
>
> Check the syntax as it was just done on the fly.
>
>
Here's the latest. I created a class that extends JNDIRealm and I can see
some debug messages in my constructor, but I don't see my authenticate
method getting invoked. I just wanted to see if I could override the
authenticate method before I started messing around with the name. Here is
my code:
public Principal authenticate(String arg0, String arg1)
{
System.out.println("Starting authenticate");
Principal principal = super.authenticate(arg0, arg1);
System.out.println("Principal Name: " + principal.getName());
System.out.println("Finished authenticate");
return principal;
}
Does anyone see what I'm doing wrong?
Thanks,
Eric
--
View this message in context:
http://www.nabble.com/Question-about-Tomcat-IIS-and-NTLM-authentication-tp14997483p15019894.html
Sent from the Tomcat - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To start a new topic, e-mail: [email protected]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]