由于SOCKS代理服务器可以处理http请求以及套接字请求。所以我试图通过SOCKS代理服务器传递make http请求,但我无法做到这一点。我通过http代理服务器成功通过SOCKS代理服务器和http请求发出了套接字请求。 这是我通过http代理服务器发出http请求的方式。 string sURL; sURL = textBoxWebAddress.Text;
WebRequest wrGETURL;
wrGETURL = WebRequest.Create(sURL);
WebProxy myProxy = new WebProxy(textBoxSOCKSHost.Text, int.Parse(textBoxSOCKSPort.Text));
myProxy.BypassProxyOnLocal = true;
wrGETURL.Proxy = myProxy;//WebProxy.GetDefaultProxy();
Stream objStream;
objStream = wrGETURL.GetResponse().GetResponseStream();
StreamReader objReader = new StreamReader(objStream);
string sLine = "";
int i = 0;
while (sLine != null)
{
i++;
sLine = objReader.ReadLine();
if (sLine != null)
Console.Write(sLine);
}
但是当我输入SOCKS代理服务器的地址和端口时,它会给出连接失败错误。我做错了什么?感谢。