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.
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.
Jeremy,
hi. Do you need sample for ActiveX or NET version of wodWebServer?
Kreso
.net version.
Thanks
Jeremy,
in NET it is very easy, you can do something like this:
[inlinecode]X509Store store = new X509Store("My");
store.Open(OpenFlags.ReadOnly);
web1.Certificate = store.Certificates[0];
[/inlinecode]
where Certificates[0] is your certificate, and 'My' is store you need.
Regards,
Kreso
Hi Kreso,
please give an example for active x Component Vb6 too.
Thanks
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.