Mantis - Resin
Viewing Issue Advanced Details
6282 minor always 08-20-19 13:40 08-23-19 12:49
mikeb01  
ferg  
normal  
closed 4.0.63  
fixed  
none    
none 4.0.63  
0006282: New HttpsEmbed fails to initialise the JsseSSLFactory correctly.
It is necessary to call init() on the JsseSSLFactory before using it. The following diff show the change required:

--- com/caucho/resin/HttpsEmbed.java 2019-05-23 12:51:48.000000000 +1200
+++ /home/barkerm/.IntelliJIdea2019.2/config/scratches/scratch_33.java 2019-08-21 08:38:05.067963444 +1200
@@ -143,6 +143,7 @@
       
       jsse.setAlias(_alias);
       jsse.setPassword(_password);
+ jsse.init();
       
       _port.setJsseSsl(jsse);
        

There are no notes attached to this issue.