26 Debugging a BPM Project
Learn how to use Oracle JDeveloper debugger to debug any of the BPMN processes contained in a BPM project.
Introduction to Debugging a BPM Project
You can debug any BPMN process contained in a BPM project using the Oracle JDeveloper debugger. Debugging a BPMN process enables you to identify and fix any workflow or logical problems that prevent your process from running correctly.
The debugging process involves adding breakpoints to a SOA composite or a BPMN process so that the debugger stops running when it reaches one of those breakpoints and you can:
-
Trace the SOA composite or the BPMN process workflow
-
Inspect or watch the value of the process instance attributes
-
Inspect or watch the value of data objects
-
Inspect or watch correlation keys
-
Inspect or watch conversations
-
Step into calls to other components and view the normalized message values sent from and returned to the BPM component
When a process logical thread runs, it activates different frames. These frames can be nested, depending on the process flow. Each frame consists of a set of data values that represents the value of a data objects and a process instance attributes at the specific declaration level. The nesting of frames conforms the stack frame.
When a process enters a data declaration container, it activates a new frame. The different declaration containers that can appear when running a BPMN process are:
-
The BPMN process itself
-
An embedded subprocess
-
A callable process
-
An event subprocess
Each of these process containers support the declaration of data objects, correlations keys and conversations. When these process containers are activated the debugger creates a new frame.
The debugger builds the stack frame according to how these process containers are nested. The stack frame is a model that provides data visibility and enables you to access the data in a BPMN process. For example, a BPMN process that contains an embedded subprocess which in turn contains call activity to a reusable subprocess, defines three levels of nesting. The debugger thread running within the reusable subprocess contains a stack frame with three elements: the frame on the top corresponds to the reusable process, the last stack element corresponds to the BPMN process.
For more information about the Oracle JDeveloper debugger, see Running and Debugging Java Programs in Developing Applications with Oracle JDeveloper.
Adding a Breakpoint to a BPMN Flow Object
You can add a breakpoint to a BPMN flow object to stop the debugger when the process flow reaches that BPMN flow object.
Breakpoints define where the debugger stops while running your BPMN process. You can add breakpoints to multiple BPMN flow objects. When the debugger reaches one of these breakpoints, it stops allowing you to monitor the values of the different variables in a project. These values may help you to resolve any problems with the workflow or logic of your BPMN process.
Adding a Breakpoint to a BPMN Component
You can add a breakpoint to a BPMN component to stop the debugger when the debugger reaches it while running an SOA composite.
Breakpoints define where the debugger stops while running your BPMN process. You can add breakpoints to multiple BPMN flow objects. When the debugger reaches one of these breakpoints, it stops allowing you to monitor the values of the different variables in a project. These values may help you to resolve any problems with the workflow or logic of your BPMN process.
Disabling a Breakpoint
You can disable a breakpoint that you do not need at a certain point in your debugging.
As you progress in your debugging session you may need to remove some of the breakpoints you added and add breakpoints in other places.