|
| Copyright © Cloud Software Group, Inc. All Rights Reserved |
The IPC tools methods allow you to perform application functions through method calls when using a customized iProcess Client application, or from either custom GI Forms or TIBCO Forms used in an iProcess Client application. (Note that there are also equivalent methods called the "WCC" tools methods that can be used with a custom application created with WCC components; those are described in the TIBCO iProcess Workspace (Browser) Components Reference guide.Most of the IPC tools methods expect a tag of some sort (e.g., case tag, work item tag, etc.). Tags are intentionally opaque, that is, we do not provide the information needed to build them — you are expected to acquire them in one of the following ways:
• Tags can be acquired through the iProcess Server Objects object model, specifically using the getTag and makeTag methods. For information, see the TIBCO iProcess Server Objects (Java or .NET) Programmer’s Guide.
• You can also acquire tags through an Action Processor response XML. For information, see the TIBCO iProcess Workspace Action Processor Reference.These methods must be called in the context of the iProcess Client application object. For example, to call the ipcStartCase method, you would call either:
− this.getApp().ipcStartCase(procTag); (from within a javascript function)
− com.tibco.bpm.ipc.getApp(this).ipcStartCase(procTag); (from an event in a TIBCO® General Interface component)
|
| Copyright © Cloud Software Group, Inc. All Rights Reserved |