TIB Bwce 2.6.2 Concepts
TIB Bwce 2.6.2 Concepts
TIB Bwce 2.6.2 Concepts
Container Edition
Concepts
Version 2.6.2
May 2021
Contents
Contents 2
Overview 4
Key Concepts 5
Layout of the Concepts Guide 6
General Concepts 7
Applications 7
Modules 8
Application Modules 9
Shared Modules 11
Binary Shared Modules 12
Processes 13
Activities 16
Palettes 17
Transitions 17
Shared Resources 18
REST Services 30
Policies 31
Policy Definitions and Concepts 32
Design-time Concepts 36
Runtime Concepts 39
Overview
TIBCO BusinessWorks™ Container Edition is an integration product suite for
applications.
With this software you can create services and integrate applications using a visual,
model-driven development environment, and then deploy them in the TIBCO
BusinessWorks Container Edition runtime environment.
It uses the Eclipse graphical user interface (GUI) provided by TIBCO Business Studio™
for BusinessWorks™ to define business processes and generate deployable artifacts in
the form of archive files.
With TIBCO Business Studio for BusinessWorks, you can model integration processes
of varying complexity using any of the following integration styles:
l Batch-oriented - provides non real-time integration for endpoints such as
databases or files, and uses records for data abstraction.
l Process-oriented - provides real-time integration for endpoints such as application
APIs and adapters, and uses APIs, objects, and messages for data abstraction.
l Service-oriented - provides real-time integration for endpoints such as web
services and APIs, and uses services and messages for data abstraction.
l Resource-oriented - provides real-time integration for endpoints such as mobile or
web applications and APIs, and uses resources for data abstraction.
Key Concepts
The following image provides an overview of the key concepts that you encounter when
working with the product. Some of these concepts are applicable exclusively to design
perspective or runtime perspective, while some are applicable to both perspectives.
TIBCO BusinessWorks Container Edition consists of a design-time where you can
develop applications that implement business logic and the runtime envrionment where
you execute the applications.
TIBCO BusinessWorks Container Edition is based on open architecture, flexibility,
modularity, and support for standards.
Flexibility
TIBCO Business Studio for BusinessWorks is designed to make adding, upgrading, and
swapping of business components easy.
The flexible architecture is demonstrated by:
l A zero coding model with which you can select and drop activities onto the
Process Editor and configure the activities in the UI.
l Ability to build tightly coupled as well as loosely coupled services.
l Ability to build strongly typed as well as loosely typed service implementations.
l Ability to specify application configuration to be either hard-coded or late-bound.
l Encapsulation of configuration data, thus minimizing the configuration properties
exposed by the application.
Modularity
Modularity of the product supports:
Standards-based
Supported standards include:
l Protocols and API: SOAP, JSON and REST, WSDL, HTTP, HTTPS, JMS, JDBC
l Data representation and transformation: Native support for XML, XSD, XPath,
JSON, XSLT
l Others: JNDI
This guide presents the design-time, runtime, and administration concepts that are
useful to developers and administrators. These concepts are described in the following
sections:
l General Concepts: Explains the essential concepts such as applications,
application modules, shared modules, processes, activities, transitions, and
shared resources.
l Additional General Concepts: Explains additional concepts that can be used
when developing applications such as groups, properties, services, components,
and event handlers.
l Design-time Concepts: Introduces the design-time environment, TIBCO Business
Studio for BusinessWorks.
l Runtime Concepts: Explains the runtime concepts such as process instances and
jobs.
Sections that map concepts to bundled samples aim to enhance your understanding of
the concepts by mapping them to ready samples that can be viewed and executed.
General Concepts
TIBCO BusinessWorks Container Edition applications developed to solve business
problems can range from simple to very complex solutions. These applications are
packaged in deployable artifacts in the form of archive files. Understanding these
general concepts is essential to both developers and administrators.
Applications
An application is a collection of one or more modules and can be executed in the
runtime. Applications are developed using TIBCO Business Studio for BusinessWorks.
An application contains one application module, which in turn consists of one or more
business processes. It can be executed in the runtime. Applications are developed using
TIBCO Business Studio for BusinessWorks
Applications are developed using features available in the product and can range from
simple to very complex. An TIBCO BusinessWorks Container Edition application
contains one application module (see Application Modules), which in turn consists of
one or more processes that define the business logic, and zero or more shared modules
(see Shared Modules). A process that is responsible for initiating the business logic at
runtime is used to implement a component in an application module.
Applications can also contain OSGi bundles that do not contain application artifacts. For
example, you can create an application that contains a Java OSGi bundle, which is also
referred to as a Java module.
Elements of an application
Once an application is developed, you can either run or debug directly in TIBCO
Business Studio for BusinessWorks, or generate a deployable artifact (an archive file)
that can be deployed later in the runtime environment. The deployment artifact is the
only artifact that is handed over from the design-time to the runtime environment.
Modules
A module is an Eclipse project that is configured for TIBCO BusinessWorks Container
Edition.
Two types of modules are supported:
l Application modules: The smallest resource that is named, versioned, and
packaged as part of an application and is executed in the TIBCO BusinessWorks
Container Edition runtime. An application module cannot be deployed by itself in
the TIBCO BusinessWorks Container Edition runtime; it must be packaged as part
of an application.
l Shared modules: The smallest resource that is named, versioned, and packaged
as part of an application and can be used by other modules that are part of the
same application. A shared module cannot be deployed by itself; it must be
included as part of an application module.
Application Modules
The smallest resource that is named, versioned, and packaged as part of an application
and is executed in the TIBCO BusinessWorks Container Edition runtime. An application
module cannot be deployed by itself in the TIBCO BusinessWorks Container Edition
runtime; it must be packaged as part of an application.
l src: Default source directory created when the project is Java enabled. A project
can contain multiple source directories which are used to contain the Java classes
and packages.
l JRE System Library: If your project is Java enabled, TIBCO Business Studio for
BusinessWorks includes the required JAR files in this folder.
Application modules can depend on shared modules, which can contain processes,
schemas, JSON, and WSDL files that can be used by a process in the application
module.
Shared Modules
The smallest resource that is named, versioned, and packaged as part of an application
and can be used by other modules that are part of the same application.
Shared modules export their functionality (processes, shared resources, and schema
namespaces) to application modules or to other shared modules. This means there is a
possibility that other modules in the system depend on a shared module for this
information.
Shared modules can depend only on other shared modules and cannot depend on
application modules.
At the module level, a process can reference another process in a different module.
A process can also reference a WSDL or a schema defined in a different shared module.
Schemas that are intended to be exported from a shared module must be contained in
the Schemas special folder.
Two modules with the same package names cannot be used in the same
application. Package names must remain unique across multiple shared
modules and application modules within an application. If an application
contains two packages with the same name, rename of the packages, or
remove a package from an application.
For information on shared modules that can be exported for the purpose of sharing them
with other users, see "Binary Shared Modules" in TIBCO BusinessWorks™ Container
Edition Concepts.
Binary shared modules serve as a good vehicle when you have a standalone
functionality to share without exposing its details.
For more information on creating and using a binary shared module, see "Creating a
Binary Shared Module", and "Using a Binary Shared Module" in TIBCO
BusinessWorks™ Container Edition Application Development.
Processes
Processes capture and describe the flow of business information in an enterprise
between different data sources and destinations.
Processes comprise of activities that accomplish tasks. The flow of data between
activities in a process is represented using transitions, conditions, and mappings. TIBCO
Business Studio for BusinessWorks provides design palettes containing activities and
transitions that can be used to develop business processes.
Parent Process
A process can call another process, or a subprocess. The process that is making the
call is referred to as a caller process or a parent process.
Subprocess
A subprocess can be called by a parent process, or another subprocess. In the case
where a subprocess is calling another subprocess, the subprocess that is making the
call is the parent process. The called process is referred to as a subprocess or a child
process. At runtime, inline subprocesses are executed on the same engine thread as
the caller process while the non-inline subprocesses use different engine threads and
are executed on the new threads.
Component Process
The execution of a process is triggered by various events. Often the business logic
that is designed to react to a particular event is spread across multiple processes.
One of the processes is special and it reacts to the original event and triggers the
execution of the other processes. This special process is referred to as the
component process or main process. A component process is responsible for
initiating the job at run time.
A component process is designed to react to various events and these events are
triggered by Processes and Bindings.
Process Services
A process can provide services to other processes. A process service exposes the
operations provided by the process and is implemented using a WSDL or a JSON file.
When the process is implemented by a component, the process services are exposed
as component services, which then need to be configured using bindings.
Process References
A process can consume services provided by other processes or by external service
providers. A process reference exposes the operations consumed by the process and
is implemented using a WSDL or a JSON file. A process reference can be configured
to invoke a process or an external service.
When the process is implemented by a component, the process references that are
not configured to call a process or an external service through a binding are exposed
as component references, which then need to be configured using bindings.
Activator Process
An activator process is a special process that can be used to perform pre-processing
and post-processing tasks when the application is started and stopped respectively.
The activator process contains a process service with two operations: OnStartup and
OnShutDown.
Note: For details about the TIBCO Business Studio for BusinessWorks
development environment, see Design-time Concepts.
Activities
Activities are the individual units of work in a process.
Activities generally interact with an external system and perform a task. Activities that
perform similar tasks are grouped in an entity called a palette. TIBCO Business Studio
for BusinessWorks provides various technology-specific palettes using which you can
build a business process.
Each activity in a palette is represented by an icon. For example, the database update
activity is represented by the icon. Often an activity icon is also decorated with an
additional symbol such as a green or a yellow pause sign to indicate the activity waits for
an event, an arrow to indicate the direction of the data flow, and so on. For example, the
arrow sign in the JMS Send Message icon indicates data is being
sent by this activity.
l Regular Activities perform a specific task. Regular activities can have input and
output in addition to their configuration. Activities can also state the faults they can
throw at runtime. This allows the process to be designed to handle these faults and
perform the necessary actions. Regular activities can be further classified into
synchronous and asynchronous activities.
Synchronous activities are blocking. They block the execution of the process until
the activity task completes.
Asynchronous activities are non-blocking. They perform a task asynchronously
without blocking the execution of a process.
l Process Starter Activities are configured to react to events. They trigger the
execution of a process when the event occurs. Process starter activities can have
only outputs in addition to their configuration. For example, the HTTP Receiver
process starter activity starts a process when an HTTP request is received.
Note: For details about the TIBCO Business Studio for BusinessWorks
development environment, see the Concepts Guide.
Palettes
Palettes group activities that perform similar tasks. TIBCO Business Studio for
BusinessWorks provides various technology specific palettes that provide quick access
to activities when building a process.
Palettes are typically located to the right of the Process Editor in TIBCO Business
Studio for BusinessWorks. Depending on the process being designed and the stage of
process development, you can focus on the activities available under appropriate
palettes.
In TIBCO Business Studio for BusinessWorks, the Palette views displays the list of
activities contained in a palette and allows you to perform the following actions:
l Search for activities in palettes.
l Use multiple palettes and save them as grouped palette sets.
l Save palettes, or the grouped palette sets, as favorites.
l View recently used palettes.
l Create virtual palettes, which means that some activities can be taken from
unrelated palettes. This activity is called a custom shortcut.
Note: For more information about the TIBCO Business Studio for
BusinessWorks development environment, see Design-time Concepts.
Transitions
Transitions can be added to activities and groups in a process. They represent the flow
of execution from one activity or group to another.
Shared Resources
Shared resources are resources that contain common configuration data that can be
referenced from multiple places.
You can define a shared resource and then reference it from multiple activities in the
same or different process.
Shared resources such as JDBC Connection, JMS Connection, HTTP Connection, are
available at design-time. At runtime, the referencing activities and event sources have
full access to their instances and configuration.
Shared resources can be grouped in packages, similar to the way process packages
and Java packages are presented in the file system.
When defined in an application module, shared resources are not visible to processes
outside the application module. However, when defined in a shared module, they are
visible to processes outside the shared module.
Shared Variables
Shared variables are used to define data for modules and jobs. There are two types of
shared variables: job shared variables and module shared variables. They are stored
separately.
Groups
Groups consist of one or more activities that are assembled together and executed
according to their type.
Groups enable you to put one or more activities together and configure the group as
needed. For example, defining a single error condition for the group, or creating a group
as a transaction that commits to a database only when all the activities in the group are
completed.
Every group contains a GroupStart element on the left and a GroupEnd
element on the right.
Groups can be classified into two categories: groups with conditions (repetitive groups)
and groups without conditions (non-repetitive groups).
local variables and can also contain fault handlers and event handlers. A scope
with a single activity can be defined if you need to handle faults or catch
exceptions specific to an individual activity.
l Critical Section : Critical Section groups are used to synchronize jobs so that
only one job is acting on the group of activities at any given time. Any concurrently
running job that contains a corresponding critical section waits until the job
currently executing the critical section completes. Critical section groups are
useful to control concurrent access to shared variables. While a critical section
group can be used to synchronize jobs within a process, module shared variables
help synchronize jobs for multiple processes.
Note: For more information about the TIBCO Business Studio for
BusinessWorks development environment, see Design-time Concepts.
Properties
Properties are used to define configuration. Depending on where and how they are
defined and qualified, properties can be classified into application properties, module
properties, shared module properties, and process properties. The values for all three
kinds of properties can be of one of the six primitive types (Boolean, Integer, DateTime,
Long, Password, or String) or one of the available default shared resource type. These
values are static and cannot be changed once an application has started execution.
These values can only be changed at design time or deployment time.
The three levels of properties are hierarchical: application properties are in the outer
most scope, followed by module properties, followed by process properties.
Properties defined in the inner layer can reference a property defined at its parent layer.
For example, a process property can reference a module property instead of providing a
literal value. Similarly, a module property value can be defined by literal values or source
from its parent scope application property.
Any process property or module property that you define is available both in the activity
configuration page and is also available to use as an input to an activity (from the Data
Source tab of the Input tab for the activity).
The following diagram illustrates the relationship between the different types of
properties:
Shared Variables
Shared variables are used to save the state, either at the module level or for the duration
of a job.
Using shared variables, you can share data across process instances associated with a
module or a job. A process instance can read or update the data stored in a shared
variable. The shared variable data updated by one process instance is accessible to
other process instances of a Module or Job.
There are two types of shared variables: module shared variables and job shared
variables. Both module and job shared variables are defined at the module level and can
be accessed in a process using the activities Set Shared Variable and Get Shared
Variable.
For more information on how to define and use shared variables, see "Using Shared
Variables" in TIBCO BusinessWorks™ Container Edition Application Development.
Fault Handlers
Errors (or faults) can occur when executing a process. Fault handlers allow you to catch
faults or exceptions and create fault-handling procedures to deal with potential runtime
errors in your process definitions.
Fault handlers are the recommended way to catch faults or exceptions in a process. Two
types of fault handlers are available: Catch Specific Fault and Catch All Faults.
Fault handlers can be defined at two different levels:
l Process level - When defined at the process level, allows you to catch fault in a
process.
l Scope level - When defined at the scope level, allows you to catch fault within a
scope.
Fault handlers when defined at the scope level, allows you to catch faults or exceptions
thrown by activities within a scope. To catch faults or exceptions specific to an individual
activity, you need to define a new scope for that individual activity and attach a fault
handler to the new scope.
At runtime, once a fault handler is executed, the associated scope is not completed due
to the error thrown. If a fault is not thrown in the fault handler, the process execution
continues with the first activity that follows the scope. If a fault is thrown in the fault
handler, then the engine looks for an enclosing scope that is designed to handle the
fault. If one is found, the engine executes it. Once the enclosing fault handler finishes its
execution, the engine executes the next activity following the scope. If no fault handlers
are found in the enclosing scopes, then the job terminates with a fault.
Consider the fault handlers defined in the sample process.
If an exception is caught in the inner scope, the exception is logged and the scope is
completed. If an exception is caught in the outer scope, the exception is logged and the
scope is completed. The process execution completes successfully as there are no
following activities to be processed. An Exit activity inside the fault handler returns the
control out of the scope and the process.
Error Transitions can also be used to handle error conditions by using them to specify
transition to take in case of an error.
Components
Components implement a process and provide information to the runtime on how to
instantiate the process.
Components are generated only for main processes and each main process initialized
by the engine must have a component associated with it. Components are required only
by main processes that are responsible to initiate the business logic. Subprocesses do
not require components as they are called by another parent process.
Component Services
Component services describe the binding information to receive an invocation from an
external consumer.
When a component implements a process that has a service, that process service is
exposed as a component service. The component service then must be configured
using bindings such as SOAP and REST.
The service-centric architecture supports self-contained services. Each service is
configured separately and can be deployed on a different machine. If one machine goes
down, all other parts of the process can continue to run. This loosely-coupled
architecture makes it easy to change individual components as needed.
Component References
Component references describe the binding information required to invoke an external
service.
When the component implements a process that has a reference, then the process
reference is exposed as a component reference. When configuring to invoke an external
service, the binding information that contains protocol details is not part of the process.
The service consumer needs to create a component that is an implementation of that
process and configure the binding along with protocol details. The Invoke operation
activity or a reference can be used to invoke a service.
References have the following characteristics:
l They can be public or private. Public references are visible from outside of the
process.
l They always reference one interface or port type.
Based on the availability of the target service name at design-time, you can use either
static references or dynamic references. Static references can be used when the target
service name is available at design-time and dynamic references are available when the
target service name is not available at design-time. This applies to target services
developed as a part of TIBCO BusinessWorks Container Edition as well as external
target services.
Services
TIBCO BusinessWorks Container Edition can function both as a server and a client in a
web services interaction. Services and references are defined at the process level while
the bindings are created at the component level.
The supported service classes are:
l REST (Representational State Transfer)-compliant services, where the primary
purpose of the service is to manipulate XML representations of web resources
using a uniform set of stateless operations. When using a stateless operation, the
state is managed by the job itself instead of by the engine.
l SOAP services, which are used for exchanging information in the implementation
of web services relying on XML message format sent over HTTP and JMS.
Operations
Operations define the action that can be performed by the process. Multiple operations
are supported in a process with multiple inputs, outputs, and faults.
There are two types of message exchange operations: one-way operations and request-
response operations.
SOAP Services
SOAP services are web services that use SOAP as the standard communication
protocol for XML-based message exchanges.
The standard HTTP protocol makes it easier for SOAP model to tunnel across firewalls
and proxies without any modifications to the SOAP protocol.
l The Web Services Description Language (WSDL) contains and describes the
common set of rules to define the messages, bindings, operations and location of
the Web service. A WSDL file is a formal contract to define the interface that the
Web service offers.
l SOAP services require less coding than when designing REST services. For
example, transactions, security, coordination, addressing, and trust are defined by
the WSDL specification. Most real-world applications are not simple and support
complex operations, which require conversational state and contextual information
to be maintained. Application developers do not need to worry about writing this
code into the application layer themselves.
l SOAP supports several technologies, including WSDL and XSD.
REST Services
Representational State Transfer (REST) is an architectural style of the World Wide Web
that is used in building services for distributed systems and networked applications.
RESTful APIs are increasingly preferred for enterprise, web and mobile integration use
cases.
The key abstraction of information in REST is a resource, with focus on components, the
constraints upon their interaction with other components, and their interpretation of
significant data elements. REST ignores the details of component implementation and
protocol syntax.
The supported features of REST architectural style are:
l Client-server architecture: Provides a separation of implementation details
TIBCO BusinessWorks Container Edition currently, the following HTTP operations can
be performed on resources: GET, PUT, DELETE, and POST. Both XML and JSON are
supported as data serialization formats along with support for definition of custom status
codes, key-value parameters, and query parameters
Policies
A policy is a set of constraints that you can define and apply in TIBCO Business Studio
for BusinessWorks to manage and enforce cross-functional requirements within your
TIBCO BusinessWorks Container Edition application such as security, monitoring, and
compliance.
You can add policies to activities and bindings in a process to influence or alter actions
in the process flow. For example, you can add a policy on an existing HTTP Receiver
activity in your application to ensure that user credentials are authenticated, or verified
as correct, before the message can continue moving through the process flow. Any
request messages that cannot be authenticated are rejected, redirected, or handled in
accordance to policy details.
Basic Authentication
Validates the user name and password credentials stored in the HTTP header of
REST, SOAP, or pure HTTP request messages.
Basic Credential Mapping
Automatically attaches appropriate credentials to request messages before they
reach services.
Policy
A policy is set of constraints that you can define and apply in TIBCO Business Studio for
BusinessWorks to manage and enforce cross-functional requirements within your
application such as security, monitoring, and compliance. You can add policies to
activities and bindings in a process to influence or alter actions in the process flow.
Policy Types
Policies that are related or perform similar functions are categorized under policy types.
Policies that can be applied to the HTTP layer of SOAP, REST, and pure HTTP services
are categorized under the HTTP Security policy type. Policies that can be applied to the
SOAP layer are categorized under the SOAP Security policy type.
Activities
An activity is the individual unit of work in a process. You can add policies to activities to
influence or alter actions in a process flow.
For more information about activities, see "Application Development" in TIBCO
BusinessWorks™ Container Edition Getting Started.
Bindings
A binding is used to establish a connection between SOA Services and their consumers.
There are two types of binding components:
l Service Binding, which is used to create and expose a service to the external
world. The service can contain one or more operations. Once exposed, the service
You can add policies to bindings to manage, modify and secure message exchanges on
the consumer side and provider side.
For more information about the types of bindings offered in the workspace, see "Binding"
in TIBCO BusinessWorks™ Container Edition Concepts.
Policy Association
When you add a policy on an activity or a binding, the relationship you create between
the resources is called a policy association. At runtime, policies are enforced on the
activities and their associated bindings.
Shared Resources
Policies reference shared resources. You can manage and configure shared resources
in your workspace. The following table describes shared resources that each policy
might reference.
l Trust Provider
l Subject Provider
l WSS
Authentication
Note: You can define a shared resource and then reference it from a single
policy or multiple policies. For example, you could use a single Keystore
resource in the WSS Provider policy and the WSS Consumer policy.
Pre-requisites
The Bookstore sample requires the concepts introduced in the following sections:
l General Concepts
l Additional General Concepts
After going through these sections, you should be able to understand and execute a
resource-oriented solution such as the sample to manage books for a bookstore.
Bookstore Sample
The bookstore sample uses a RESTful service to add, delete, update, and retrieve
books from bookstore. The following REST methods are used:
l POST - Posts books to the bookstore
l GET - Get books from the bookstore
l PUT - Updates books to the bookstore
l DELETE - Deletes books from the bookstore
The Bookstore sample project is shipped with the product and can be accessed in
TIBCO Business Studio for BusinessWorks from Help > BusinessWorks Samples.
Next Steps
After completing this section, you should be able to design resource-oriented processes
with minimal assistance.
Design-time Concepts
Design-time concepts introduces TIBCO Business Studio for BusinessWorks, an
Eclipse-based integration development environment that is used to design, test, and
deploy applications.
Development Environment
TIBCO Business Studio for BusinessWorks provides a workbench that can be used to
create, manage, and navigate resources in your workspace. A workspace is the central
location on your machine where all the data files are stored.
Explorers
TIBCO Business Studio for BusinessWorks consists of the following tabs in its left pane:
l Project Explorer: Displays the logical view of your entire workspace with all the
projects and the processes, service descriptors, resources, schemas, and module
descriptors for each project
l API Explorer: You can also view the APIs residing locally on your machine from
the API Explorer. Use the Settings dialog in the API Explorer to filter the APIs you
want to access
l File Explorer: Displays a view of selected folders in your local file system
l Outline tab: Displays a tree structure of the details of a selected artifacts in an
editor
l Module tab: Displays the module properties and shared variables used in the
module
Runtime Concepts
Runtime refers to the AppNode and the .
AppNode
An AppNode (also called bwappnode) is an operating system process (JVM) that hosts
and executes TIBCO BusinessWorks Container Edition applications. An AppNode
consists of two key layers: the OSGI Framework and TIBCO BusinessWorks Container
Edition Engine. The high-level architecture of an AppNode is shown in the following
figure:
The framework layer performs application life cycle operations, ensures that
dependencies required by the application are satisfied. The engine layer is responsible
for executing the application. The engine is multi-threaded and can execute multiple jobs
for the same or different applications concurrently.
Process Instance
Execution of any process creates an execution scope for the activities that are a part of
the process and this scope is called a process instance. Each process instance has a
unique id which is referred to as "ProcessInstanceId".
The execution of a process is triggered by various events. For example, events can be
generated by a Timer that is scheduled to trigger at specific time intervals, or by changes
that occur in the file system, or by messages that are sent by a client over a specific
protocol (for example, HTTP), or simply by messages sent by other processes.
The TIBCO BusinessWorks Container Edition engine is a multi-threaded engine capable
of triggering the execution of the same process multiple times, concurrently, once for
each event. When the events that trigger the execution of a process occur concurrently,
the engine executes the same process multiple times, concurrently, once for each event.
And for each execution, the engine creates a process instance that provides an
execution scope for the activities that are a part of the process.
Job
Execution of a component process is called a job. Each job has a unique id referred to
as JobId.
When the business logic is spread across multiple processes, multiple process
instances are created and executed in conjunction with a particular event. Even though
these are separate process instances they are work together and can be executed as
part of the same job. A job can spawn multiple process instances and can provide the
execution context for activities that are part of multiple processes. The engine always
executes a job in one engine thread.
All the process instances that are part of the same job have the same JobId. A
component process instance and all of its in-line subprocess instances are also
considered to be a part of the same job. Non in-line subprocesses spawn a new engine
thread and are executed on a different job.
Product-Specific Documentation
Documentation for TIBCO BusinessWorks™ Container Edition is available on the TIBCO
BusinessWorks™ Container Edition Product Documentation page.
To directly access documentation for this product, double-click the following file:
TIBCO_HOME/release_notes/TIB_bwce_2.6.2_docinfo.html where TIBCO_HOME is the top-level
directory in which TIBCO products are installed. On Windows, the default TIBCO_HOME
is C:\tibco. On UNIX systems, the default TIBCO_HOME is /opt/tibco.
The following documents for this product can be found in the TIBCO Documentation site:
l TIBCO BusinessWorks™ Container Edition Release Notes
l TIBCO BusinessWorks™ Container Edition Application Development
l TIBCO BusinessWorks™ Container Edition Application Monitoring and
Troubleshooting
l TIBCO BusinessWorks™ Container Edition Bindings and Palettes Reference
l TIBCO BusinessWorks™ Container Edition Concepts
l TIBCO BusinessWorks™ Container Edition Error Codes
l TIBCO BusinessWorks™ Container Edition Getting Started
l TIBCO BusinessWorks™ Container Edition Migration
l TIBCO BusinessWorks™ Container Edition Performance Benchmarking and
Tuning
l TIBCO BusinessWorks™ Container Edition REST Implementation
l TIBCO BusinessWorks™ Container Edition Refactoring Best Practices
l TIBCO BusinessWorks™ Container Edition Samples
USE OF TIBCO SOFTWARE AND THIS DOCUMENT IS SUBJECT TO THE TERMS AND
CONDITIONS OF A LICENSE AGREEMENT FOUND IN EITHER A SEPARATELY EXECUTED
SOFTWARE LICENSE AGREEMENT, OR, IF THERE IS NO SUCH SEPARATE AGREEMENT,
THE CLICKWRAP END USER LICENSE AGREEMENT WHICH IS DISPLAYED DURING
DOWNLOAD OR INSTALLATION OF THE SOFTWARE (AND WHICH IS DUPLICATED IN THE
LICENSE FILE) OR IF THERE IS NO SUCH SOFTWARE LICENSE AGREEMENT OR
CLICKWRAP END USER LICENSE AGREEMENT, THE LICENSE(S) LOCATED IN THE
“LICENSE” FILE(S) OF THE SOFTWARE. USE OF THIS DOCUMENT IS SUBJECT TO THOSE
TERMS AND CONDITIONS, AND YOUR USE HEREOF SHALL CONSTITUTE ACCEPTANCE
OF AND AN AGREEMENT TO BE BOUND BY THE SAME.
This document is subject to U.S. and international copyright laws and treaties. No part of this
document may be reproduced in any form without the written authorization of TIBCO Software Inc.
TIBCO, the TIBCO logo, the TIBCO O logo, TIBCO ActiveMatrix BusinessWorks, TIBCO
ActiveSpaces, TIBCO Business Studio for BusinessWorks, TIBCO Designer, TIBCO Enterprise
Message Service, TIBCO Hawk, TIBCO Rendezvous, and TIBCO Runtime Agent are either
registered trademarks or trademarks of TIBCO Software Inc. in the United States and/or other
countries.
Java and all Java based trademarks and logos are trademarks or registered trademarks of Oracle
Corporation and/or its affiliates.
This document includes fonts that are licensed under the SIL Open Font License, Version 1.1,
which is available at: https://scripts.sil.org/OFL
Copyright (c) Paul D. Hunt, with Reserved Font Name Source Sans Pro and Source Code Pro.
All other product and company names and marks mentioned in this document are the property of
their respective owners and are mentioned for identification purposes only.
This software may be available on multiple operating systems. However, not all operating system
platforms for a specific software version are released at the same time. See the readme file for the
availability of this software version on a specific operating system platform.
THIS DOCUMENT IS PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
This and other products of TIBCO Software Inc. may be covered by registered patents. Please
refer to TIBCO's Virtual Patent Marking document (https://www.tibco.com/patents) for details.