Trouble Overriding addNodes Method in Eclipse Milo's NodeManagementServices #1266
realdragonhead
started this conversation in
General
Replies: 1 comment 1 reply
-
Try using namespace index = 2 here. Your custom namespace should be getting added at index=2, not index=1. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm currently developing an OPC UA server using Eclipse Milo and have based my implementation on the default server example provided by the project. I've extended the ManagedNamespaceWithLifecycle to include custom node management functionality by overriding the addNodes method. However, I'm encountering an issue where the default addNodes method from NodeManagementServices is being called instead of my custom implementation.
Namespace:
Client Code:
I have ensured that the namespace index and URI are correctly configured and match between the server and client. Despite this setup, the server does not trigger my overridden addNodes method when I attempt to add nodes via the client.
Could there be a configuration issue or something I'm missing that prevents my overridden method from being recognized by the server? Any guidance or suggestions to debug this issue would be greatly appreciated.
Thank you for your help!
Beta Was this translation helpful? Give feedback.
All reactions