using c# i have two aplications
- on .net framework 4 - client
- and one more on .net framework 4.5 - server
and communicate each other using WCF.
using IISCrypto i turned off tls1.0 and then i get this error
'The caller was not authenticated by the service'
i know that the client will negotiate with the server and take the highest protocol that server provides, so have forcefully change the protocol to the server to
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
but what happens to client that is framework 4? i tried to change the protocol on the client too but nothing change.