Guest Posted April 24, 2018 Report Posted April 24, 2018 (edited) Salut, Fac niste requesturi catre OLX.ro si am intampinat o problema. Cand fac request cu IP-ul meu sau cu un VPN requesturile se duc fara probleme, dar am incercat cu niste http proxies (pe care le-am verificat in prealabil si ar trebui sa mearga) si primesc eroarea asta mereu: The underlying connection was closed: The connection was closed unexpectedly. Am cautat pe stackoverflow si am incercat urmatoarele posibilitati unele chiar in combinatie: webRequest.KeepAlive = false; webRequest.ServicePoint.Expect100Continue = false; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; // <- pus inaintea requestului, olx foloseste TLS 1.2 webRequest.Timeout = 3000; Primesc aceeasi eroare. Poate cineva mai priceput sa imi zica ce as putea face? Ciudat este ca de pe VPN nu ar trebui sa mearga si totusi merge, dar cu proxyuri nu... @dancezar Scuze ca iti dau tag sunt sigur ca esti ocupat, dar poate vezi si imi dai vreo idee... PS: Am folosit http proxies, porturi 80 si 8080 Edited April 24, 2018 by Guest Quote
gigiRoman Posted April 24, 2018 Report Posted April 24, 2018 (edited) Daca adaugi o adresa de proxy in browser si faci requestul iti merge? Poate s-au facut prea multe requesturi de pe ipul ala si e blacklistat. https://stackoverflow.com/questions/45355102/https-over-proxy-doesnt-work Edited April 24, 2018 by gigiRoman Quote
Guest Posted April 24, 2018 Report Posted April 24, 2018 1 hour ago, gigiRoman said: Daca adaugi o adresa de proxy in browser si faci requestul iti merge? Poate s-au facut prea multe requesturi de pe ipul ala si e blacklistat. https://stackoverflow.com/questions/45355102/https-over-proxy-doesnt-work Da, in browser cu acelasi proxy merge... Am sa incerc sa mai adaug headere ceva cu toate ca nu cred ca rezolva problema... Quote
Guest Posted April 24, 2018 Report Posted April 24, 2018 Raspunsul la problema este ca nu ii activam si SSL3... ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12; Cu asta merge brici. Mersi mult @gigiRoman. Quote