diff -r cd3d15e8ef42 -r c6068b674b30 opc_ua/client.py --- a/opc_ua/client.py Fri Oct 21 18:33:06 2022 +0200 +++ b/opc_ua/client.py Tue Oct 25 18:51:45 2022 +0200 @@ -67,6 +67,7 @@ + @@ -114,6 +115,9 @@ # cryptomaterial is expected to be in project's user provide file directory if name in ["Certificate","PrivateKey"]: value = os.path.join(self.GetCTRoot()._getProjectFilesPath(), value) + # ApplicationUri defaults to URI if not set + if name == "ApplicationUri" and not value: + value = res["URI"] res[name] = value return res