ContentsIndexHome
PreviousUpNext
Java

The SSL options for Java are passed as a semi-colon separated string passed as 4th argument to the openSessionExt method when creating a session:

Key 
Description 
Example 
KeystoreFile 
The keystore file to use 
 
KeystoreType 
The type of keystore, valid values are JKS or PKCS12 
 
KeystorePassword 
The password to use for the keystore file 
 
KeyManagerPassword 
The Java keymanager password to use 
 
CRLFile 
The file that contains the certificate revocation list 
 

Example:

KeystoreType=JKS;KeystoreFile=my/server.jks;CRLFile=my/crl.jks;KeystorePassword=server_storepass;KeyManagerPassword=server_keypass