- 浏览: 47994 次
- 性别:
- 来自: 南京
文章列表
JLDAP/async
- 博客分类:
- LDAP SSL
import com.novell.ldap.*;
import java.util.Enumeration;
import java.util.Iterator;
import java.io.UnsupportedEncodingException;
public class Searchas
{
public static void main( String[] args )
{
if (args.length != 5) {
System ...
import com.novell.ldap.LDAPJSSESecureSocketFactory;
import com.novell.ldap.LDAPConnection;
import com.novell.ldap.LDAPException;
import com.sun.net.ssl.SSLContext;
import com.sun.net.ssl.TrustManager;
import com.sun.net.ssl.X509TrustManager;
import com.sun.net.ssl.TrustManagerFactor ...
引用:http://www.novell.com/documentation/developer/samplecode/jldap_sample/
import com.novell.ldap.*;
import java.security.Security;
import java.io.UnsupportedEncodingException;
public class SSLConnection
{
public static void main( String[] args )
{
if (args.le ...
Server configuration
Make sure you've got those available (RHEL5),
rpm -q \
openssl \
openssl-devel \
openldap-servers
Make the self-signed key,
cd /etc/openldap/
openssl req -newkey rsa:1024 -x509 -nodes -out server.pem -keyout server.pem -days 365
grep ^ldap /etc/passwd
chown ldap:ldap server.pem
...
引用:http://www.berlinix.com/openssl.html
OpenSSL笔记
目录 [显示]
OpenSSL介绍
OpenSSL是一个安全工具集,同时也提供了开源程序库。它支持ssl(Secure Sockets Layer, v2/v3),TLS(Transport Layer Secure, v1)。这套工具集的应用范围非常之广,包括:
创建 ...
http://www.cnblogs.com/Poseidon/articles/1786579.html
引用:http://www.experts-exchange.com/Programming/Languages/Java/New_to_Java/Q_24254611.html
package beans;
import java.util.*;
import javax.naming.*;
import javax.naming.directory.*;
import javax.naming.ldap.InitialLdapContext;
public class TestLdapScript {
@Suppr ...
引用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 -ali ...
JFormDesigner-5.0.1-eclipse.zip
转:http://hi.baidu.com/tjx1222/blog/item/66dce1458142e12ecefca369.html
Spring使用spring-beans.dtd文件来定义BeanFactory的XML配置规范。可以在http://www.springframework.org/dtd/spring-beans.dtd找到该dtd文件,当然,Spring的下载文件中也已经包含了该dtd文件。它被放在dist文件夹中。
配置文件的根元素是beans,每个组件使用bean元素来定义,bean元素可以有许多属性,其中有两个是必须的:id和class(这里说的id是 ...
转至:http://www.blogjava.net/fool/archive/2006/11/13/80901.html
soap报头与处理
SOAPHeaderElement 对象中的属性决定了接收者怎样处理消息,可以认为header属性提供了扩展消息的方法,给出了像身份认证,支付,转发消息这样的相关的事情。JAX-RPC客户API(占位程序,动态代理,DII)均没有提供对SOAP文件头的支持,SAAJ API提供了支持。所有消息处理程序都必须实现javax.xml.rpc.handler.Handler接口,该接口有一系列的方法用以处理soap消息。javax.xml.rpc.ha ...
转至:http://www.flatws.cn/article/program/shell/2011-02-23/14037.html为当前用户创建cron服务ps6平坦软件园
1. 键入 crontab -e 编辑crontab服务文件ps6平坦软件园
例如 文件内容如下:ps6平坦软件园
*/2 * * * * /bin/sh /home/admin/jiaoben/buy/deleteFile.sh ps6平坦软件园
保存文件并并退出ps6平坦软件园
*/2 * * * * /bin/sh /home/admin/jiaoben/bu ...
转至:http://home.phpchina.com/space.php?uid=82784&do=blog&id=143280
名称 : crontab
使用权限 : 所有使用者
使用方式 :
crontab file [-u user]-用指定的文件替代目前的crontab。
crontab-[-u user]-用标准输入替代目前的crontab.
crontab-1[user]-列出用户 ...