-
Hello everyone! Currently trying to set OPC Server-Client connection with encryption. I already have studied However, I slightly changed code (I do not want to use predefined certificates and private keys from examples)
I believe, that the cause lies in certificates and URI's theme. But I can not understand, where and why. Server app
Client app
Script for password generation
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Found out that it throws error if After I set
I will try to find out how to provide Client access for writing |
Beta Was this translation helpful? Give feedback.
Found out that it throws error if
USE_TRUST_STORE == False
in Server andUSE_TRUST_STORE ==True
in ClientAfter I set
USE_TRUST_STORE = False
in Client, the Client got ability to connect to server. However, it still blocks ability for client to writeERROR:__main__:User does not have permission to perform the requested operation.(BadUserAccessDenied)
I will try to find out how to provide Client access for writing