cmd.putElement("cookie", cookie);
return cmd.dump();
}
public static String cloneProfile(String cookie, String srcDn, String newProfileName) {
XmlObject cmd = new XmlObject("lsClone");
cmd.putElement("cookie", cookie);
cmd.putElement("dn", srcDn);
cmd.putElement("inTargetOrg", "org-root");
cmd.putElement("inServerName", newProfileName);
cmd.putElement("inHierarchical", "false");
return cmd.dump();
}