starturtle

Results 11 comments of starturtle

> 'No matching endpoints: 3, http://opcfoundation.org/UA/SecurityPolicy#Basic256Sha256' > ... > Whats am i missing here? The code line that logs this is in client.py: @staticmethod def find_endpoint(endpoints, security_mode, policy_uri): """ Find...

What stops you from deferred execution of your "stop handling routine" on a different thread than your subscription handler? That would immediately unblock the communication thread, and prevent you from...

I don't have a dev env for python at hand anytime soon, sorry. But will elaborate, hoping to get you on track. The core idea would be to create a...

Does the parent node have huge children, or are there indeed very many? How about limiting the max number of references to return? If I remember correctly, that part can...

Wouldn't it help with such issues if `node.get_references` provided an interface to set `RequestedMaxReferencesPerNode` on the [browse parameters](https://github.com/FreeOpcUa/python-opcua/blob/master/opcua/common/node.py#L368)? That may enable a client on slow hardware to run against a...

From what I remember, `get_value` triggers a new read request. That is not needed, as the value for your monitored item has been forwarded to the callback already. Not sure...

I find "local" and "host" equally confusing. Basically, we're talking about the client application, client user, and server application certificates when encrypting messages and doing certificate-based authentication. Imagine a client...

I'm confused. You are talking about the server reporting for the first time on first change. "Change" implies that you're talking about monitoring a Variable Value. "Reporting" implies that that...

Trivial thing, and I assume this is just a typo when giving the information: Th call stack says "Kanuer", the XML says "Knauer". You've ruled out that error source, right?...

I'm confused. The spec excerpts you shared both demand the password to be encrypted, so that happening is not a mistake, but specified behavior. At the point the client ist...