Tag Archives: client

Validating Tomcat-SSL Configuration using a Java Client program

Continuing with the topic of configuring Apache Tomcat – SSL, we wish to validate the connection using a Java Client program. The prime motive is to use a standard Java Console application and connect over SSL with an already deployed web portal running on Tomcat. Use sample Java code – HelloClient.java (Replace the file extension […]

0  

Generating Certificates using Keytool

In Windows 7, make sure you open Command Prompt under Administrative mode. On Server machine: $ keytool -genkey -alias SrvKeystore -keypass abcd123 -keystore SrvKeystore -storepass abcd123 What is your first and last name? [Unknown]: G P What is the name of your organizational unit? [Unknown]: GauZ What is the name of your organization? [Unknown]: GauZ […]

0