Browsing when MaxNodesPerBrowse options are specified #1400
gtaylor1981
started this conversation in
General
Replies: 1 comment
-
Can you connect to this server without security enabled and get a Wireshark capture while this happens? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When browsing, our client sees errors like "The request could not be processed because it specified too many operations."
We think this is caused by a server is specifying a lower value in "MaxNodesPerBrowse" (or similar) in its operation limits.
To browse, we call
node.browseNodes(options)
.The options are:
BrowseOptions.builder().setBrowseDirection(BrowseDirection.Forward).setNodeClassMask(Set.of(NodeClass.Variable, NodeClass.Object, NodeClass.View)).build()
We saw
setMaxReferencesPerNode()
options, but setting this did not make a difference, and would have prevented us from seeing all nodes.Can we somehow reduce the number of nodes made by our
browseNodes()
call, while still being able to access all data?Beta Was this translation helpful? Give feedback.
All reactions