Commit c71ac81d authored by Jonas Neubert's avatar Jonas Neubert Committed by Christian Bergmiller

cherry puck/merge 86711c1f

parent a17d8783
......@@ -49,8 +49,8 @@ class Client(object):
self._password = self.server_url.password
self.name = 'Pure Python Async. Client'
self.description = self.name
self.application_uri = 'urn:freeopcua:client'
self.product_uri = 'urn:freeopcua.github.no:client'
self.application_uri = "urn:freeopcua:client"
self.product_uri = "urn:freeopcua.github.io:client"
self.security_policy = ua.SecurityPolicy()
self.secure_channel_id = None
self.secure_channel_timeout = 3600000 # 1 hour
......
......@@ -75,7 +75,7 @@ class Server:
self.logger = logging.getLogger(__name__)
self.endpoint = urlparse("opc.tcp://0.0.0.0:4840/freeopcua/server/")
self._application_uri = "urn:freeopcua:python:server"
self.product_uri = "urn:freeopcua.github.no:python:server"
self.product_uri = "urn:freeopcua.github.io:python:server"
self.name = "FreeOpcUa Python Server"
self.application_type = ua.ApplicationType.ClientAndServer
self.default_timeout = 60 * 60 * 1000
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment