Hello again,
That below code is adding an existing Node (created runtime) to NCM. There is only question & problem. If I want to use AddNode method, I don't know to pass NCMNode object to AddNode Verb by XML. Can you give any suggest?
XmlDocument xdoc = new XmlDocument(); XmlElement[] elem = new System.Xml.XmlElement[1]; XmlElement xel = xdoc.CreateElement("coreNodeId"); xel.InnerText = nodeID; elem[0] = xel;
client.Invoke("Cirrus.Nodes", "AddNodeToNCM", elem);