Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 70c23e48fbcb2bafdd5bf5b185e87a1202d65176 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
In this directory is a java keystore file 'server.ks' that has a self-signed certificate.
The password for accessing this keystore is 'server'.  To use with the default
SSLServerSocketFactory and SSLSocketFactory you may use the following Java System
Properties

-Djavax.net.ssl.keyStore=security/server.ks
-Djavax.net.ssl.keyStorePassword=server
-Djavax.net.ssl.trustStore=security/server.ks

To debug the ssl connection process add this Java System Property

-Djavax.net.debug=all 

Back to the top