SSL Sample (wodWebServer / wodWebServer.NET)
Would you please provide an SSL sample which load certificate from localmachine store.
In most cases, the server certificates are installed in the certificate store but not in file system.
SSL Sample
Jeremy,
hi. Do you need sample for ActiveX or NET version of wodWebServer?
Kreso
SSL Sample
.net version.
Thanks
SSL Sample
Jeremy,
in NET it is very easy, you can do something like this:
X509Store store = new X509Store("My");
store.Open(OpenFlags.ReadOnly);
web1.Certificate = store.Certificates[0];
where Certificates[0] is your certificate, and 'My' is store you need.
Regards,
Kreso
SSL Sample
Hi Kreso,
please give an example for active x Component Vb6 too.
Thanks
SSL Sample
Hi.
Sample for ActiveX is available with all SSL related components, under
Samples\Certificate Management\VB\1. Enum Installed Certificates
you will see how to access specific certificate and pass it to the component.