// Load a workflow template from the GPEL Engine.
Workflow workflowTemplate = client.load(templateID);
// Instantiate the workflow template.
GcInstance instance = client.instantiate(workflowTemplate,
this.configuration.getDSCURL());
// ID to retrieve the workflow instance
URI instanceID = instance.getInstanceId();
logger.info("instanceID: " + instanceID);