Spero che tu possa aiutarmi con questo. Sono stato su Google per tutta la mattinata e ho provato tutte le soluzioni che riuscivo a trovare o pensare a me stesso. Il sito che sto tentando di caricare esegue TLS1.2 come alcuni altri siti con cui ho provato a verificare che non si trattasse di un problema TLS1.2. Gli altri siti sono stati caricati correttamente.C# HttpWebRequest La connessione sottostante è stata chiusa: si è verificato un errore imprevisto in una trasmissione
byte[] buffer = Encoding.ASCII.GetBytes(
"mod=www&ssl=1&dest=account_settings.ws"
+ "&username=" + username.Replace(" ", "20%")
+ "&password=" + password.Replace(" ", "20%"));
ServicePointManager.MaxServicePointIdleTime = 1000;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
HttpWebRequest WebReq =
(HttpWebRequest)WebRequest.Create(
"https://secure.runescape.com/m=weblogin/login.ws");
WebReq.Method = "POST";
WebReq.KeepAlive = false;
WebReq.Referer =
"https://secure.runescape.com/m=weblogin/loginform.ws"
+ "?mod=www&ssl=1&expired=0&dest=account_settings.ws";
WebReq.ContentType = "application/x-www-form-urlencoded";
WebReq.ContentLength = buffer.Length;
Stream PostData = WebReq.GetRequestStream();
PostData.Write(buffer, 0, buffer.Length);
PostData.Close();
HttpWebResponse WebResp = (HttpWebResponse)WebReq.GetResponse();
Stream Answer = WebResp.GetResponseStream();
StreamReader _Answer = new StreamReader(Answer);
reply = _Answer.ReadToEnd();
curAccount++;
if (reply.Contains("Login Successful"))
{
eturn true;
}
else
{
eturn false;
}
Non importa quello che cerco Continuo a ricevere l'eccezione
La connessione sottostante è stata chiusa: un errore imprevisto si è verificato un invio.
Sotto ulteriori dettagli ho trovato
autenticazione non è riuscita perché il partito a distanza ha chiuso il flusso di trasporto.
Probabilmente voglio 'Tls | Tls11 | Tls12' nella maggior parte dei casi. –