Alexander Schrode

Results 177 comments of Alexander Schrode

Also i noticed your screenshot doesn't match you posted code. Is `objects == client.nodes.objects` ?

Ok the problem is you did not connect to the server. ```Python async def main(): client = Client("opc.tcp://localhost:53530/OPCUA/SimulationServer/") client.session_timeout = 2000 root = client.nodes.root async with client: allVariables = []...

The decoding of a value fails, maybe it is needed to load custom datatypes: `await client.load_data_type_definitions()`

xmlexport has a problem with exporting values, until we support the whole xml dataencoding, every change is just a small patch on a big problem.

The class Event adds these as attribute via setattr. This is the solution from mypy cheat sheet: ``` Python # If you want dynamic attributes on your class, have it...

I know that a subscription is the best way to keep a session alive. But we received some bug reports that didn't use subscriptions and had session timeouts. Because some...

1. Yes server can deny setting the SourceTimestamp / ServerTimestamp, it is up to the server. 2. Depends on the server, most server will set it to the time when...

Something with your certificates triggers an error. I am also not sure if a public certicate in pem format is supported. Convert the certifcate.pem to a der file via openssl....

Tests pass again. Maybe a issue with used python version or some network problems in the test runner.