Hello everyone,
I have create a little service on my workstation with CommandBox with SSL enable.
I open the URL with Firefox and it’s show “MOZILLA_PKIX_ERROR_SELF_SIGNED_CERT” but I can read all pages.
I try download one file from CommandBox task with this code:
var result = progressableDownloader.download(
“https://192.168.xxx.xxx/file.zip”
‘filePath’,
function( status ) {
progressBar.update( argumentCollection = status );
}
);
But CommandBox show this error:
Connection failure https://192.168.xxx.xxx/file.zip
java.security.cert.CertificateException: No subject alternative names present
\system\util\ProgressableDownloader.cfc: line 211
There is a workaround for this issue o i must create a certificate for 192.168.xxx.xxx IP/name?
Thank you!