nauful / LibUA

Open-source OPC UA client and server library
Apache License 2.0
262 stars 94 forks source link

TIMEOUT: get Server Status #167

Closed jvanlangen closed 5 months ago

jvanlangen commented 5 months ago

When using this library (.NET Framework 4.8) causes the clients giving a TIMEOUT on the get Server Status.

Any thoughts?

nauful commented 5 months ago

Can you try reading server status on the server using the TestServer project? That's currently working for me.

bevanweiss commented 5 months ago

@jvanlangen any update on this? What version of the library are you using? You might also need to show some Wireshark logs of the 'conversation' showing the TIMEOUT error, and some information around what your application logic is that's using the library... are you sure you're calling base.HandleReadRequestInternal(NodeId id) if the node isn't one of your application nodes?

jvanlangen commented 5 months ago

A, I've found the issue. We override the HandleReadRequestInternal method but didn't call the base.HandleReadRequestInternal. It's fixed now..