The following Java code example creates an application
using the JAVA API.
/*
* This Java Quick Start uses the EJB mode and contains the following JAR files
* in the class path:
* 1. adobe-livecycle-client.jar
* 2. adobe-usermanager-client.jar
* 3. adobe-application-remote-client.jar
* 4. adobe-repository-client.jar
* 5. jbossall-client.jar (use a different JAR file if the LiveCycle Server is not deployed
* on JBoss)
*
* These JAR files are located in the following path:
* <install directory>/sdk/client-libs/common
*
* The jbossall-client.jar file is located in the following path:
* <install directory>/jboss/client
*
* The JBoss files must be kept in the jboss\client folder. You can copy the client folder to
* your local development environment and then include the jbossall-client.jar file in your class path.
* This JAR file is reference to other client jars present in the client folder.
*
*
* If you want to invoke a remote LiveCycle Server instance and there is a
* firewall between the client application and the server, then it is
* recommended that you use the SOAP mode. When using the SOAP mode,
* you have to include additional JAR files located in the following
* path
* <install directory>/sdk/client-libs/thirdparty
*
* For information about the SOAP
* mode and the additional JAR files that need to be included,
* see "Setting connection properties" in Programming
* with LiveCycle
*/
package com.adobe.idp.dsc.applicationmanager;
import java.util.Properties;
import java.util.Random;
import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
import com.adobe.livecycle.applicationmanager.client.ApplicationManagerClient;
import com.adobe.repository.bindings.ResourceRepositoryDelegate;
import com.adobe.repository.bindings.dsc.client.ResourceRepositoryClient;
public class CreateApplicationVersion_EJB {
private static String applicationFolder = "Applications";
private static String defaultAppVersion = "1.0";
public static void main(String[] args) {
// Set connection properties required to invoke LiveCycle ES3
Properties connectionProps = new Properties();
connectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT",
"jnp://lcserver:1099");
connectionProps.setProperty("DSC_TRANSPORT_PROTOCOL",
ServiceClientFactoryProperties.DSC_EJB_PROTOCOL);
connectionProps.setProperty("DSC_SERVER_TYPE",
ServiceClientFactoryProperties.DSC_JBOSS_SERVER_TYPE);
connectionProps.setProperty("DSC_CREDENTIAL_USERNAME", "administrator");
connectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", "password");
// Create ServiceClientFactory object
ServiceClientFactory myFactory = ServiceClientFactory
.createInstance(connectionProps);
// Create ApplicationManagerClient object
ApplicationManagerClient appClient = new ApplicationManagerClient(
myFactory);
// Create ResourceRepositoryDelegate object
ResourceRepositoryDelegate repositoryClient = new ResourceRepositoryClient(
myFactory);
final Random num = new Random();
String appName = "App" + num.nextInt();
String newAppName = null;
try {
// Create application with default application version
newAppName = appClient.createApplication(appName);
if (repositoryClient.resourceExists("/" + applicationFolder + "/"
+ appName.toString() + "/" + defaultAppVersion)) {
System.out.println("Application with name: " + appName + "/"
+ defaultAppVersion + " is created succesfully!");
}
} catch (Exception e) {
e.printStackTrace();
}
try {
// Create another version of the new application
appName = appClient.createApplicationVersion(newAppName,
defaultAppVersion, "2.0", "version increment");
if (repositoryClient.resourceExists("/" + applicationFolder + "/"
+ appName.toString() + "/" + "2.0")) {
System.out.println("Application version 2.0 created : "
+ appName + "/" + "2.0");
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
|
|
|