OPC-UA Method Call

Hi,
I'm trying to call an OPC-UA method. Input parameters are handled in a function node.
image

msg.objectId = "ns=2;s=Sinumerik";
msg.methodId = "ns=2;s=/Methods/Filehandling/Select";
//msg.fname=flow.get("fname");
msg.inputArguments = [
    { dataType: "String", value: "Sinumerik/FileSystem/Work Pieces/TECHNIKER/MESS.MPF"},
    { dataType: "UInt32", value: 1}
];
return msg;

Error:Execute method result, error:The node id refers to a node that does not exist in the server address space.
Copied the identifier from UAExpert:
image
image
I'm not sure if the identifier of the method or of the input argument is the problem.
If I call the method in UAExpert directly it works.
Any thoughts about this?
Thx,
Steve

You need to provide method parent nodeId as objectId that contains method.
And methodId nodeId to call method.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.