Atozed Forums
Http.sys and SSL - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: Http.sys and SSL (/thread-1276.html)



Http.sys and SSL - max7575 - 09-30-2019

Hi All,

I tried to configure a SA Application with Http.sys with SSL certificate. If I register the certificate by IIS everithing woks fine.

Is it possible use Http.sys application with SSL without IIS?

Thanks in advance


RE: Http.sys and SSL - Jose Nilton Pace - 09-30-2019

Hi Max, yes it is. Your certificate must be installed on windows first. Open a PowerShell (as Admin), get Thumbprint:
Code:
dir cert:\localmachine\my
Result, something like this:
Code:
Thumbprint                                Subject
----------                                -------
8F9AFB30C7318432C5AF34591AECB3103439DB24  CN=www.jnp.com.br, OU=PositiveSSL, OU=Domain Control Validated

Copy the Thumprint of your certificate. On the PoweShell (as Admin):
Code:
$guid = [guid]::NewGuid()
$certHash = "THUMBPRINT COPIED ABOVE"
"http add sslcert ipport=0.0.0.0:8889 certhash=$certHash appid={$guid} certstore=my" | netsh



RE: Http.sys and SSL - max7575 - 10-01-2019

It works! Thanks