如何编程读取weblogic814 portal内置ldap内的用户信息
String account = "portaladmin ";
String password = "portaladmin ";
String root = "dc=portal ";
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory ");
env.put(Context.PROVIDER_URL, "ldap://localhost:7001/dc=portal ");
env.put(Context.SECURITY_AUTHENTICATION, "simple ");
env.put(Context.SECURITY_PRINCIPAL, "cn=portaladmin,dc=portal ");
env.put(Context.SECURITY_CREDENTIALS, password);
try {
ctx = new InitialDirContext(env);
System.out.println( "认证成功 ");
}
catch (javax.naming.AuthenticationException e) {
System.out.println( "认证失败 ");
e.printStackTrace();
}
catch (Exception e) {
System.out.println( "认证出错: " + e);
e.printStackTrace();
}
查了一些资料,试着写了一段代码,但是不正确。
可能是传的参数不正确。
有人以前做过吗?发段代码gon共享一下,多谢了。
[最优解释]
在win98下对串口数据进行捕获,采用了vxd技术在ring0层对串口实现了Hook操作。-In the under win98 serial data capture, using vxd in ring0 layer serial interface operation of the Hook.