You can write a helper:
XmlNode selectSingleNode(XmlNode src, string path)
{
  XmlNode[] nodes = src.parseXPath(path);
  return nodes.length==0 ? null : nodes[0];
}

Then:
string test1 = node.selectSingleNode(`//instanceId`).getCData();

Reply via email to