Ignore service end point security errors

0 comments




// ignore ssl cert errors - important for fiddler to capture https traffic
webReq.Proxy = new WebProxy("http://127.0.0.1:8888", false);
ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };

// ServicePointManager.ServerCertificateValidationCallback = Http.ValidateServerCertficate;


Comments


Leave a Comment