使用 Visual Studio 2005 - C# 2.0、System.Net.WebClient.UploadData(Uri address, byte[] data)
Windows Server 2003
所以这是代码的精简版本:
static string SO_method(String fullRequestString)
{
string theUriStringToUse = @"https://10.10.10.10:443"; // populated with real endpoint IP:port
string proxyAddressAndPort = @"http://10.10.10.10:80/"; // populated with a real proxy IP:port
Byte[] utf8EncodedResponse; // for the return data in utf8
string responseString; // for the return data in utf16
WebClient myWebClient = new WebClient(); // instantiate a web client
WebProxy proxyObject = new WebProxy(proxyAddressAndPort, true);// instantiate & popuylate a web proxy
myWebClient.Proxy = proxyObject; // add the proxy to the client
myWebClient.Headers.Add("Content-Type", "application/x-www-form-urlencoded"); // stick some stuff in the header
UTF8Encoding utf8Encoding = new UTF8Encoding(false);// create a utf8 encoding
Byte[] utf8EncodedRequest = HttpUtility.UrlEncodeToBytes(fullRequestString, utf8Encoding); // convert the request data to a utf8 byte array
try
{
utf8EncodedResponse = myWebClient.UploadData(theUriStringToUse, "POST", utf8EncodedRequest); // pass the utf8-encoded byte array
responseString = utf8Encoding.GetString(utf8EncodedResponse); // get a useable string out of the response
}
catch (Exception e)
{
// some other error handling
responseString = "<CommError><![CDATA[" + e.ToString() + "]]></CommError>";// show the basics of the problem
}
return responseString;// return whatever ya got
}
这是我得到的错误:
基础连接已关闭:无法为 SSL/TLS 安全通道建立信任关系。
当请求发出时,我没有太多控制权来查看发生了什么。我被告知它正在到达正确的目的地并且存在“证书错误”。这可能是因为我的请求中的 IP 地址与其解析到的 URL 之间存在文字不匹配。我有多个 IP 我应该轮询,因此指定 URL 将不起作用。我没有附上证书——我也不应该根据端点所有者的说法。对于“他们”来说,证书错误是“正常的”,我应该忽略它。
有问题的证书据说是我们服务器上“就在那里”的众多威瑞信证书之一。我看到的忽略证书错误的示例似乎都暗示请求者正在附加特定的 x509 证书(我不是)。
我查看了.net WebService,绕过 ssl 验证!which kinda-sorta 描述了我的问题 - 除了它也有点不,因为我不知道我应该参考哪个证书(如果有的话)。
有没有办法让我在不知道/关心导致问题的证书的情况下忽略错误?
并且拜托-孩子手套,小词和“傻瓜”代码,因为我不是一个重量级的击球手。
此流量通过专用线路 - 所以我的理解是,忽略证书错误并不像它是开放的互联网流量那么重要。