Mantis - Resin
|
|||||
Viewing Issue Advanced Details | |||||
|
|||||
ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
6282 | minor | always | 08-20-19 13:40 | 08-23-19 12:49 | |
|
|||||
Reporter: | mikeb01 | Platform: | |||
Assigned To: | ferg | OS: | |||
Priority: | normal | OS Version: | |||
Status: | closed | Product Version: | 4.0.63 | ||
Product Build: | Resolution: | fixed | |||
Projection: | none | ||||
ETA: | none | Fixed in Version: | 4.0.63 | ||
|
|||||
Summary: | 0006282: New HttpsEmbed fails to initialise the JsseSSLFactory correctly. | ||||
Description: |
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); |
||||
Steps To Reproduce: | |||||
Additional Information: | |||||
Relationships | |||||
Attached Files: |
There are no notes attached to this issue. |