Topic RSSExpandedNodeId to NodeId, is it unique?
May 22, 2014
10:02, EEST
10:02, EEST
gjevremovic
Member
Members
Forum Posts: 49
Member Since:
January 30, 2014
January 30, 2014
OfflineHi,
I have a question which is not really related to Prosys API. I have next peace of code:
AddressSpace addressSpace = uaClient.getAddressSpace();
List<ReferenceDescription> listOfReferences = addressSpace.browse(someNodeId);
if (null != listOfReferences) {
for (ReferenceDescription ref : listOfReferences) {
NodeId subNodeId = addressSpace.getNamespaceTable().toNodeId(ref.getNodeId())));
}
}
List<ReferenceDescription> listOfReferences = addressSpace.browse(someNodeId);
if (null != listOfReferences) {
for (ReferenceDescription ref : listOfReferences) {
NodeId subNodeId = addressSpace.getNamespaceTable().toNodeId(ref.getNodeId())));
}
}
This is the only way which I found how from reference to reach NodeId. Please advice if there are better way.
Does call of method toNodeId(ExpandedNodeId n) return unique result, e.g. what will be the result if in same namespace exist
2 nodes with same browse name?
Best regards,
Goran
May 22, 2014
13:47, EEST
13:47, EEST
Jouni Aro
Moderator
Moderators
Forum Posts: 1044
Member Since:
December 21, 2011
December 21, 2011
OfflineYes, this is the best way to convert the NodeId and ExpandedNodeId. The NamespaceTable is the one that knows how the NamespaceURI and NamespaceIndex, which needs to be known.
You may also be able to use the UaNode objects, from which you can get the references:
UaNode node = client.getAddressSpace().getNode(prevId);
UaReference[] refs = node.getReferences();
UaReference[] refs = node.getReferences();
Forum Timezone: Europe/Helsinki
Most Users Ever Online: 1919
Currently Online:
Guest(s) 43
Currently Browsing this Page:
1 Guest(s)
1 Guest(s)
Top Posters:
Heikki Tahvanainen: 402
hbrackel: 144
rocket science: 100
pramanj: 86
Francesco Zambon: 83
Ibrahim: 78
Sabari: 62
kapsl: 57
gjevremovic: 49
Xavier: 43
Member Stats:
Guest Posters: 0
Members: 773
Moderators: 7
Admins: 1
Forum Stats:
Groups: 3
Forums: 15
Topics: 1558
Posts: 6567
Newest Members:
aracelyhaley4, raphaelschonell, Ashmag, kathyreimann56, brittanylemos, dorthycundiff76, PromotionToold, CHHinrichs, rodricklienhop, jose_WanderleiModerators: Jouni Aro: 1039, Pyry: 1, Petri: 1, Bjarne Boström: 1054, Jimmy Ni: 26, Matti Siponen: 359, Lusetti: 0
Administrators: admin: 1
© Simple:Press —

Log In
Register