The underlying connection was closed: An unexpected error occurred on a send
The underlying connection was closed: An unexpected error occurred on a send

Seit anfangs Woche habe ich bei einem PowerShell Script die Fehlermeldung: The underlying connection was closed: An unexpected error occurred on a send.

Damit die Verbindung zu einer Webseite wie in diesen zwei Beispielen funktioniert:

$client = new-object System.Net.WebClient
$client.DownloadFile("https://stastka.ch/api/, "log.txt" )

oder 

 $webRequest = [System.Net.WebRequest]::Create("https://stastka.ch/api/)

Das Problem liegt in der TLS-Verschlüsselung die für meine Webseite z.Z. TLS 1.1 und TLS 1.2 unterstützt. Powershell:

 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

Unter C#

System.Net.ServicePointManager.SecurityProtocol =
    SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

 

Nichts gefunden

Es wurde zur Story The underlying connection was closed: An unexpected error occurred on a send kein Kommentar gefunden

Information

Werbung oder Ähnliches sind nicht erlaubt, daher wird jeder Beitrag geprüft und freigegeben.
Advertising, etc. are not allowed, so any contribution is reviewed and approved.
Facebook-Webadress are not allowed, Facebook als Webadresse ist nicht erlaubt


* Die E-Mail wird nicht veröffentlicht / The email will not be published
** Bitte Zahl eintragen / Please enter the number
Ihr Kommentar
?
?
captcha Image?
?
 

Tippsammlung

Kleine Tippsammlung für mich und dijenige die sich auf meine Webseite verirrt haben.

Archiv

JahrArchiv
Tag(s):