Hi Henrik,
We have had a look at that and some other material.
The fact that VisualCron cannot connect with TLS v1.0 turned off means it is trying to connect with that protocol, we would think ?
We have this issue also with another Software Product built on .net.
The post above is mostly on about SSL v3 connections and not specifically TLS v1.0.
According to the wiki post in the article;
https://en.wikipedia.org...r_Security#TLS_handshake The first thing that happens is the client sends a message with the
highest TLS protocol version it supports
Negotiation phase:
• A client sends a ClientHello message specifying the highest TLS protocol version it supports, a random number, a list of suggested cipher suites and suggested compression methods. If the client is attempting to perform a resumed handshake, it may send a session ID.
From out point of view, based on the above, we think it should be using TLS 1.2, and switching off TLS 1.0 should not have mattered . . . . if they are on.
See the information at the bottom of this Page you linked to:
--- snip ---
Update: It turns WebRequest does support TLS 1.1 and 1.2, but you have to turn them on manually at System.Net.ServicePointManager.SecurityProtocol. See also
http://stackoverflow.com/a/26392698/284795 I don't know why they are disabled out the box, that seems a poor setup choice, and tantamount to a bug. We should probably report it.
--- snip ---
We will certainly look further into it at our end