The following Java code example gets status of 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. 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.io.FileInputStream;
import java.util.Properties;
import com.adobe.idp.Document;
import com.adobe.idp.applicationmanager.application.ApplicationId;
import com.adobe.idp.applicationmanager.application.ApplicationStatus;
import com.adobe.idp.applicationmanager.application.impl.ApplicationIdImpl;
import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
import com.adobe.livecycle.applicationmanager.client.ApplicationManagerClient;
import com.adobe.livecycle.applicationmanager.client.ApplicationManagerClientException;
public class GetApplicationStatus_EJB {
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);
Document doc = null;
try {
final FileInputStream fileApp = new FileInputStream("C:\\appraisal.lca");
doc = new Document(fileApp);
} catch (Exception e) {
e.printStackTrace();
}
final String sampleAppName = "Samples - Performance Appraisal";
try {
//Import the application into the LC server
final String resourceID = appClient.importApplication(doc);
System.out.println("Import application with resource ID: " + resourceID + " is completed successfully!");
//Deploy the application
boolean result = appClient.deployApplication(sampleAppName);
if (result) {
System.out.println("Imported application is deployed.");
}
} catch (ApplicationManagerClientException e) {
e.printStackTrace();
}
//Initialize the ApplicationId instance
ApplicationId appId = new ApplicationIdImpl();
appId.setApplicationName(sampleAppName);
try {
//Get the application by application id
ApplicationStatus status = appClient.getApplicationStatus(appId);
System.out.println("Get application status with code: " + status.getStatusCode());
} catch (Exception e) {
e.printStackTrace();
}
}
}
|
|
|