You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: