摘要: https://blog.cjwdev.co.uk/2011/06/12/net-windows-api-library-cjwdev-windowsapi-vesion-2-2-released/#more-382 跨session应用 阅读全文
posted @ 2019-01-04 15:19 龙骑科技 阅读(1004) 评论(0) 推荐(0)
摘要: XmlDocument.Load(url) url是https远程时,报错" 基础连接已经关闭: 未能为 SSL/TLS 安全通道建立信任关系。" "根据验证过程,远程证书无效。" XmlDocument.Load(url) url是是本地文件或者和是http时不会报错,但是如果是https远程时, 阅读全文
posted @ 2019-01-04 14:53 龙骑科技 阅读(771) 评论(0) 推荐(0)
摘要: Message = "基础连接已经关闭: 未能为 SSL/TLS 安全通道建立信任关系。" InnerException = {"根据验证过程,远程证书无效。"} 解决方法如下: using System;using System.Collections.Generic;using System.C 阅读全文
posted @ 2019-01-04 14:41 龙骑科技 阅读(7106) 评论(0) 推荐(0)
摘要: XmlDocument.Load(url) 的使用 远程: string path = @"http://localhost:8080/Source/XMLConfig.xml";//从http远程加载xml文档XmlDocument doc = new XmlDocument(); doc.Loa 阅读全文
posted @ 2019-01-04 14:08 龙骑科技 阅读(870) 评论(0) 推荐(0)