erdomke / InnovatorAdmin

A tool for managing Aras Innovator installations focusing on improving the import/export experience.
http://erdomke.github.io/InnovatorAdmin/
MIT License
58 stars 42 forks source link

Since our server migrated to TLS1.2 can't connect #193

Open pkrayeski opened 5 years ago

pkrayeski commented 5 years ago

Our IT team depreciated support for any security less than TLS1.2 and since that change the InnovatorAdmin executable (latest mainline) cannot connect to our server.

For another Windows App that we developed we were able to resolve with the following changes:

Add references: using System.Net; using System.Security; and added the following line of code during init: ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

Is there an easy way to get a version of InnovatorAdmin that defaults to TLS1.2?