web developer tips (41):用自颁发的证书连接到远程IIS服务器
2009-09-02 – 00:55
原文地址:establishing a remote connection to a IIS server with self-issued certificate will require a certificate validation delegate
要么通过WMSvc 要么通过自己的脚本,当你尝试与远程服务器建立一个连接,没有提供受信任的证书,你需要提供证书验证的委托,用来检查不受信任的证书。
http://www.watch-life.net/visual-studio/establishing-a-remote-connection-to-a-iis-server-with-self-issued-certificate.html
这个委托的签名如下:
Namespace: System.Net.Security
Assembly: System (in System.dll)
public delegate bool RemoteCertificateValidationCallback(
Object sender,
......[阅读全文]
分类: Visual Studio | 没有评论 »

