I'm working with two web services. They are in different servers. I need to change information between them, but for this i must implement a safe data traffic canal through SSL Protocol.
An important detail is my necessity to use certificate of machine.
In the following code examples, i'm trying to do this.
Server One:
//----------------------------------------------------------------------- ---------- //intance of the other web service... CertServiceWse ws = new CertServiceWse();
X509CertificateStore store = null; store = X509CertificateStore.LocalMachineStore(X509CertificateStore.MyStore); store.Ope nRead();