We are using XMLExport for extracting node info into an XML file. Please refer attachment for the psudocode. I need help with 2 things
1. How we achieve the same in CWS 16 API
2.How performerOptions can be implemented.
LLValue performerOptions = new LLValue().setAssoc();
performerOptions.add("nodeInfo", 1);
performerOptions.add("attributeInfo", 1);
performerOptions.add("scope", "base");
performerOptions.add("content", "base64");
File file = new File(folderPath);
file.mkdirs();
fileName = folderPath + fileSeperator + dataId + ".xml";
status = LAPICOnnection.documents.XMLExport(nodeID, performerOptions, fileName);
Thanks.