Reputation: 163
For OPC UA Client SDK 2.5.4 , on computer name change the client certificates needs to be recreated as they becomes invalid. Why, is it documented anywhere?
In Version 2.0, on computer name change the clients certificates were not affected and hence there was no need of recreating them. Using a Dotnet 4.5 and C# 6 supported application.
Upvotes: 3
Views: 1133
Reputation: 163
In version 2.1.0 change log there is the line
<computername>
So a certificate with localhost in its SubjectName cannot be found, because certificates with <computername>
are searched.
After version 2.1.0 we need to recreate client certificate also along with server certificates, on computer name change.
Upvotes: 2