JNDI课件

源代码在线查看: testmd5.java~36~

软件大小: 384 K
上传用户: qw4104
关键词: JNDI
下载地址: 免注册下载 普通下载 VIP

相关代码

				package jndi;				import javax.naming.*;				import javax.naming.directory.*;				import java.util.*;								/*				用于测试连接md5时指定强度 曾海2003-10				sun one 的服务器,进directory server控制台,在data结点的password对话框中,把				passowrdencryption改成明文,否则不认用户名												*/								import java.util.Hashtable;				public class TestMd5 {								  public TestMd5() {				    Hashtable env = new Hashtable(11);								    try {				         DirContext ctx;				         ctx=new InitialDirContext();				         Attributes attrs = ctx.getAttributes(				          "ldap://localhost:50028", new String[]{"supportedSASLMechanisms"});				         Enumeration enu = attrs.getAll() ;				         while(enu!=null && enu.hasMoreElements() ){				               Attribute atr = (Attribute) enu.nextElement();				               System.err.println("服务器,端口50028属性是"+ atr );				               Enumeration ne  = atr.getAll() ;				               while(ne!=null && ne.hasMoreElements() )				                 System.err.println(" = "+ne.nextElement() );				       }//while				         ctx.close() ;				         System.err.println("测试成功!") ;								        env.put(Context.INITIAL_CONTEXT_FACTORY,   "com.sun.jndi.ldap.LdapCtxFactory");				        env.put(Context.PROVIDER_URL, "ldap://localhost:50028");				        env.put(Context.SECURITY_AUTHENTICATION, "DIGEST-MD5");				        env.put(Context.SECURITY_PRINCIPAL, "dn:uid=ZHai,ou=groups,dc=jssvc,dc=com");								        //试图对付realm领地				        //env.put("java.naming.security.sasl.realm", "NetscapeRoot");								        //必须用dn形式,否则根本没有任何结果。				        env.put(Context.SECURITY_CREDENTIALS, "916");				       ctx = new InitialDirContext(env);// generic failure,unable canonify user and get auxprops				       System.err.println("用digest-md5安全连接成功!");				       System.err.println(ctx.lookup("uid=ZHai,ou=groups,dc=jssvc,dc=com") ) ;				          ctx.close();					} catch (NamingException e) { System.err.println("error!"); e.printStackTrace() ;};								  }				  public static void main(String[] args) {				    TestMd5 testMd51 = new TestMd5();				  }				}			

相关资源