我从互联网上获得了以下示例,用JNDI测试GSSAPI。
public class GssExample {
public static void main(String[] args) {
System.setProperty("java.security.auth.login.config", "C:\\gssapi_jaas.conf");
System.setProperty("java.security.krb5.conf", "C:\\krb5.conf");
LoginContext lc = null;
try {
lc = new LoginContext(GssExample.class.getName(),
new LoginCallBackHandler());
lc.login();
} catch (LoginException le) {
}
Subject.doAs(lc.getSubject(), new JndiAction(args));
}
}
class JndiAction implements java.security.PrivilegedAction {
public Object run() {
performJndiOperation(args);
return null;
}
private static void performJndiOperation(String[] args) {
Hashtable<String, String> env = new Hashtable<String, String>(11);
env.put(Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.ldap.LdapCtxFactory");
env.put(Context.PROVIDER_URL,
"ldap://XXXX.domain.lab:389/OU=StackOverFlow,dc=domain,dc=lab");
env.put(Context.SECURITY_AUTHENTICATION, "GSSAPI");
env.put("javax.security.sasl.server.authentication", "true");
try {
DirContext ctx = new InitialDirContext(env);
// Fails here with exception as shown below
NamingEnumeration<SearchResult> _result = ctx.search("DC=domain,DC=lab","(objectClass=User)", null);
ctx.close();
} catch (NamingException e) {
e.printStackTrace();
}
}
我得到了例外
javax.naming.NameNotFoundException:[LDAP:错误代码32 - 0000208D: NameErr:DSID-03100241,问题2001(NO_OBJECT),数据0,最佳匹配 of:'OU = StackOverFlow,DC = domain,DC = lab'
请注意:广告系统中存在OU。
LoginCallBackHandler
的代码与
class LoginCallBackHandler implements CallbackHandler {
@Override
public void handle(Callback[] callbacks) throws IOException,
UnsupportedCallbackException {
if(callbacks != null && callbacks.length > 0) {
if(callbacks[0] instanceof NameCallback) {
((NameCallback)(callbacks[0])).setName("User@DOMAIN.LAB");
}
else if(callbacks[0] instanceof PasswordCallback) {
((PasswordCallback)(callbacks[0])).setPassword("Password".toCharArray());
}
}
}
}
我错过了什么或者我做错了什么?
答案 0 :(得分:2)
该错误与身份验证无关。您错误地使用LDAP搜索。您已经限制了搜索群DN ldap://XXXX.domain.lab:389/OU=StackOverFlow,dc=domain,dc=lab
。然后,您提供了ctx.search("DC=domain,DC=lab",...
,但没有树DC=domain,DC=lab,OU=StackOverFlow,dc=domain,dc=lab
。
提供仅具有RootDSE的另一个LDAP URL,或者为search()
提供一个emptry字符串。