I am New to JSSE Plz Help
Hi All,
My task is to establish a secure connection for customers to communicate with ldap for Login.I really lack the idea how to implement ssl for a Form based SSL authentication.Kindly give some suggesssion.
To test using jsse i have downloaded and installed the jar files in javahome directory.which happens to be
c:\iplanet\ias6\ias\usr\java\jre
When i try to execute a java code to find the trustStore
i am getting trustStore not found.
below is the code
public class ShowTrustStore {
public static void main(String[] args) {
String trustStore = System.getProperty("javax.net.ssl.trustStore");
if(trustStore == null)
System.out.println("javax.net.ssl.trustStore is not defined");
else System.out.println("javax.net.ssl.trustStore = " + trustStore);
}
}
Kindly respond ..what is the setting which is lacking as well as the ways to use ssl for a browser based client.
regards
manoj

