Work with SSL/LDAP Using Java

引用http://www.devx.com/tips/Tip/39936


Work with SSL/LDAP Using Java

Most applications nowadays authenticate through LDAP (directory service). To set this up, first register the SSL certificate using the keytool utility, as shown below:

Register ssl certificate using keytool:

keytool -import -alias <certname> -file <filename.crt> -keystore "..yourpath\java\jre\lib\security\cacerts"

The following code shows how to connect to LDAP and display the values specific to a username:

..class name..
..

public static void main(String args[]){

String keystore = System.getProperty("" + "/lib/security/cacerts");
System.setProperty(LDAPConstants.LDAP_SSL_TRUST_STORE,keystore);

try{
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
env.put(Context.PROVIDER_URL, "ldap://yourservername:636");
env.put(Context.SECURITY_AUTHENTICATION, "simple");
env.put(Context.SECURITY_PROTOCOL, "ssl");

env.put(Context.SECURITY_PRINCIPAL, "yourusername");
env.put(Context.SECURITY_CREDENTIALS, "yourpassword");

dirCtx = new InitialLdapContext(env, null);

NamingEnumeration ne = null;
SearchControls controls = new SearchControls();
controls.setSearchScope(SearchControls.SUBTREE_SCOPE);
ne = dirCtx.search("OU=Users,DC=yourcompany, DC=com, DC=au","userName="+userName,controls);

if (ne != null) {
if (ne.hasMore()) {
SearchResult item = (SearchResult) ne.next();
display(item.getAttributes());
}

}catch(javax.naming.AuthenticationException e){
e.printStackTrace();
}catch(NamingException e) {
e.printStackTrace();
}
}
private static void display(Attributes attr) throws NamingException{
NamingEnumeration ne = attr.getAll();
while(ne.hasMore()){
Attribute obj = (Attribute)ne.next();
System.out.println(obj.getID()+"\t"+(String)obj.get(0));
}
}
....
...
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值