python-opcua
python-opcua copied to clipboard
LGPL Pure Python OPC-UA Client and Server
If you use an OPCUA Client such as UA Expert from Prosys and change values within the gui than the Servertimestamp is not set while writing the node, which is...
Hi everyone, i got a syntax error for the load_type_definitions() function by using it as client. My code is: ```python import sys sys.path.insert(0, "..") import time import logging from IPython...
**Describe the bug** The `server-methods.py` example encounters an out of range error. ``` Traceback (most recent call last): File "/home/gea/.local/lib/python3.8/site-packages/opcua/server/binary_server_asyncio.py", line 75, in _process_data ret = self.processor.process(hdr, buf) File "/home/gea/.local/lib/python3.8/site-packages/opcua/server/uaprocessor.py",...
Hey, I'm trying to read historic values from the free Procys OPC UA Simulation Server for one day (15.04.2019 10:00:00 - 16.04.2019 10:00:00) and NodeId "ns=5;s=Counter1". The Procys OPC UA...
I'm new to freeopcua and I'm getting an error that I can't get rid of. My server works fine, and I can read the values at UaExpert, but I'm recieving...
I found a get_node method, but I want to get more than one node at a time. Thank you.
I have used the server-minimal.py example and tried to connect from an Beckhoff TwinCAT OPC UA Client to the python server. That failed with an client error InvalidNodeHdl. After talking...
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe8 in position 0: invalid continuation byte
This is a bug report. to get help go to https://github.com/FreeOpcUa/python-opcua/discussions **Describe the bug** The server program is developed using Open62541.The client program is developed using python-opcua. Sometimes the client...
Hi, I 'm trying to get the children of a node that has lot's of children, like this: node.get_children(refs=33) I don't know how to determine the number of children it...
I have server and client working but i have to add feature to client that if it disconnects ti should reconnect the server automatically within few seconds. Can someone please...