SSL/TLS with Sun One Server

I am trying to establish SSL connection with Sun One Server using JNDI. However, i am getting the following exception:

Problem searching directory: javax.naming.CommunicationException: simple bind failed: dirserver:636 [Root exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found]

I am also unable to establish connection to the server using Microsoft LDP tool if i specify secure port 636. Unsecure connection is established successfully.

I followed the following steps to enable SSL/TLS on Sun One Server

1. Generate certificate request

2. Acquire SSL certificate from CA (used thawte site to obtain trial certificate by entering the certificate request)

3. Imported certificate to server (server-cert)

4. Trusting your Certificate Authority and all certificates it issues

5. Enable SSL on server

Do i require to add a client certificate to keytstore? From where should i obtain a client certificate? Please help.

[1043 byte] By [neha_83a] at [2007-11-27 0:25:43]
# 1
get the certificate from the provider, then import it to your JVM,if you use SSL, don't forget to put env.put(Context.SECURITY_PROTOCOL,"ssl");env.put(Context.SECURITY_AUTHENTICATION, "simple");env= is the Context map.
Mathewhaia at 2007-7-11 22:23:41 > top of Java-index,Core,Core APIs...