Replies: 2 comments 9 replies
-
have you seen this? https://github.com/FreeOpcUa/opcua-asyncio/blob/master/examples/server-extension-object-as-method-argument.py |
Beta Was this translation helpful? Give feedback.
0 replies
-
@AndreasHeine yes i have. It was first what i looked at. In my case it dispalys incorrectly ... |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all!
I have faced such problem: I created a custom data type with help data type definitions. After that I used custom data type as InputArgument of method. I found out that it works only in case when I set up argument as an array:
arg.ValueRank = 0
arg.ArrayDimensions = [].
But, actually, i need to use my Argument as Scalar with ValueRank = -1. When i set up ValueRank = -1 it displays incorrectly.
Perhaps I understand smth incorrect, when we use data type definitions we get an array of fields and that is why i have to use ValueRank = 0 instead of ValueRank = -1 ?
Thanks in Advance!
Andrii Klimov
Beta Was this translation helpful? Give feedback.
All reactions