Methods / Methods for Archiving and Restoring Processes |
Web Services
Restores a process instance and associated data from the ArchiveDatabase to the AgilePoint Server. The process instance records are written to the AgilePoint Database deleted from the AgilePoint Archive Database.
public virtual void RestoreProcInst(string processInstanceID)
Name | Description |
---|---|
processInstanceID |
|
None.
// this is console application sample code IWFWorkflowService svc = GetWorkflowService(); string processInstanceID = ..// the ID of process instance to be restored. try { svc.RestoreProcInst(processInstanceID); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex) ); }
3.2.0.4 and higher