我看到了很多答案,但它没有用!!!!! 这是我的代码:
List<KeyValuePair<string, string>> lstItemsIndexC = new List<KeyValuePair<string, string>>();
XmlDocument xmlDoc = new XmlDocument();
ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(AcceptAllCertifications);
xmlDoc.Load("https://apps.myexponet.com/apps/aspnet/budget/js/indices_heb.xml");
我得到以下异常:
请求已中止:无法创建SSL / TLS安全通道。
描述:执行期间发生了未处理的异常 当前的网络请求。请查看堆栈跟踪了解更多信息 有关错误的信息以及它在代码中的起源。
异常详细信息:System.Net.WebException:请求已中止: 无法创建SSL / TLS安全通道。
来源错误:
第31行:
ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(AcceptAllCertifications); 第32行:第33行:
xmlDoc.Load( “https://apps.myexponet.com/apps/aspnet/budget/js/indices_heb.xml”); 第34行:第35行:XmlNodeList MList = xmlDoc.SelectNodes( “/索引/日期”);
有人可以帮帮我吗? 我看到了很多答案,但它确实没有用! 谢谢!