Node Management Support #1557
johannwesely
started this conversation in
General
Replies: 3 comments 1 reply
-
None are implemented by the SDK, but all can be implemented by users of the SDK by overriding the corresponding methods in |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hello, we had an discussion today with S.Allmendinger and he said that:" If not implemented, it should throw BAD_SERVICE_UNSUPPORTED on ServiceLevel, and must not throw an error on OperationResult". |
Beta Was this translation helpful? Give feedback.
1 reply
-
Ok, for now, something like this: server.addServiceSet(
"",
new DefaultNodeManagementServiceSet(server) {
@Override
public AddNodesResponse onAddNodes(ServiceRequestContext context, AddNodesRequest request)
throws UaException {
throw new UaException(StatusCodes.Bad_ServiceUnsupported);
}
@Override
public DeleteNodesResponse onDeleteNodes(
ServiceRequestContext context, DeleteNodesRequest request) throws UaException {
throw new UaException(StatusCodes.Bad_ServiceUnsupported);
}
@Override
public AddReferencesResponse onAddReferences(
ServiceRequestContext context, AddReferencesRequest request) throws UaException {
throw new UaException(StatusCodes.Bad_ServiceUnsupported);
}
@Override
public DeleteReferencesResponse onDeleteReferences(
ServiceRequestContext context, DeleteReferencesRequest request) throws UaException {
throw new UaException(StatusCodes.Bad_ServiceUnsupported);
}
}); |
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.
-
Hello,
we are right now in the certification process of our milo server.
One Point that occured during the process is this:
"Node Management:
Service calls return OperationResults with Bad_NotSupported. Which operations of this service are supported?"
Greetings Johann
Beta Was this translation helpful? Give feedback.
All reactions