|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
由于这些智能化家电的市场需求没有预期的高,Sun放弃了该项计划。就在Oak几近失败之时,随着互联网的发展,Sun看到了Oak在计算机网络上的广阔应用前景,于是改造了Oak,active|尺度在ActiveDirectory中撑持LDAP协定,我们能够在Java中利用尺度的JavaJNDIAPI来会见它。LDAP服务器并不是真的必需撑持JNDIAPI,只需撑持LDAP协定就能够了。我们已供应了一个复杂的测试案例程序来认证一个LDAP服务器的辨认名。一样平常情形下,看待ActiveDirectory不用与看待任何其他的LDAP服务器有甚么分歧。- importjava.util.Properties;importjavax.naming.*;importjavax.naming.directory.*;//includetheJNDIintheclasspath.YoushouldusethesameJDKusedbyWebSphereApplicationserver.classwasLdapAuth{publicstaticvoidmain(String[]args){//*****************userinformationtobeauthenticated********************************//*****************Pleasemodifythefollowingthreepropertiesaccordingly************StringldapHost="ldap://cliang1.austin.ibm.com:389";//ldaphost+portnumberStringDN="cn=user1,ou=Austin,o=ibm,c=us";//DNtobeauthenticatedStringpassword="security";//DNspassword//*****************EndofuserinformationPropertiesprops=newProperties();props.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");//forwebsphere4.0and5.0//props.put(Context.INITIAL_CONTEXT_FACTORY,"com.ibm.jndi.LDAPCtxFactory");//forWebSphere3.5releaseprops.put(Context.SECURITY_AUTHENTICATION,"simple");//usesimpleauthenticationmechanismprops.put(Context.SECURITY_CREDENTIALS,password);props.put(Context.SECURITY_PRINCIPAL,DN);props.put(Context.PROVIDER_URL,ldapHost);longstart=System.currentTimeMillis();longend=0;longtime=0;try{System.out.println("authenticating");DirContextctx=newInitialDirContext(props);System.out.println("authenticated");end=System.currentTimeMillis();time=end-start;System.out.println("authenticationtakes="+time+"millis");System.out.println("successfullyauthenticateDN:"+DN);}catch(Exceptionex){end=System.currentTimeMillis();time=end-start;System.out.println("Exceptionis"+ex.toString());ex.printStackTrace();System.out.println("authenticationtakes="+time+"millis");System.out.println("failtoauthenticateDN:"+DN);}}}
复制代码
Java伴随着互联网的迅猛发展而发展,逐渐成为重要的网络编程语言。Oracle收购Sun后Java前途未卜。 |
|