Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
opcua-asyncio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nikola Balog
opcua-asyncio
Commits
c71ac81d
Commit
c71ac81d
authored
May 27, 2018
by
Jonas Neubert
Committed by
Christian Bergmiller
Jul 30, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cherry puck/merge
86711c1f
parent
a17d8783
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
opcua/client/client.py
opcua/client/client.py
+2
-2
opcua/server/server.py
opcua/server/server.py
+1
-1
No files found.
opcua/client/client.py
View file @
c71ac81d
...
...
@@ -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
...
...
opcua/server/server.py
View file @
c71ac81d
...
...
@@ -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.
n
o:python:server"
self
.
product_uri
=
"urn:freeopcua.github.
i
o:python:server"
self
.
name
=
"FreeOpcUa Python Server"
self
.
application_type
=
ua
.
ApplicationType
.
ClientAndServer
self
.
default_timeout
=
60
*
60
*
1000
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment