Maybe keepas is setting the ServicePointManager.SecurityProtocol. After I added: ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; It worked fine. Maybe this is helpful for anybody.
Maybe keepas is setting the ServicePointManager.SecurityProtocol. After I added: ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; It worked fine. Maybe this is helpful for anybody.
I wrote a plugin which changes the pw by http requests. Something like this: MyHttpService.ChangePw(username, oldPw, newPw); Thats working fine If I test it with a C# console Project. The plugin is also working fine (Menu is there, if I press the MenuItem it runs). But the first Request fails Example Code: HttpWebRequest request = (HttpWebRequest) HttWebRequest.Create(myUrl); request.Method = "GET"; request.GetResponse(); At request.GetResponse(); it throws a System.Net.WebException: system.net.webexception...