Examples of callCmsWithoutParsing()


Examples of com.hlcl.rql.as.CmsClient.callCmsWithoutParsing()

    String rqlRequest = "<IODATA loginguid='" + logonGuid + "' sessionkey='" + sessionKey + "'>"
        + "<PROJECT><EXPORTPACKET action='copy' guid='" + oldPckg.getPublicationPackageGuid() + "' name='" + newPckgName
        + " '/>" + "</PROJECT></IODATA>";

    // call cms and ignore response (no parsing)
    client.callCmsWithoutParsing(rqlRequest);

    // get newly created package
    PublicationPackage newPckg = project.getPublicationPackageByName(newPckgName);
    // further actions on newPckg
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.