Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 7. BPEL Console
7.1. About the BPEL Console Link kopierenLink in die Zwischenablage kopiert!
- any process definitions you have deployed to the BPEL engine
- the process instances executing in the BPEL engine
- a process execution history
- the query pertaining to the execution history
7.2. Log in to the BPEL Console Link kopierenLink in die Zwischenablage kopiert!
Note
bpel-console window within your browser.
admin as the default userid and admin as the default password.
7.3. Process Definition Link kopierenLink in die Zwischenablage kopiert!
7.4. Deploying Process Definition Link kopierenLink in die Zwischenablage kopiert!
7.5. Manually Undeploy a Process Link kopierenLink in die Zwischenablage kopiert!
Procedure 7.1. task
- Launch a web browser and navigate to http://localhost:8080/bpel-console.
- Enter your user name and password.
- Click on the Runtime tab.
- Select the Deployments option. You will now be able to see the version information and current status (active or retired) of each process definition.
- Check if there is any active process consisting of any unfinished instances, retire the process.
- Undeploy the process only when there is no active process instance.
Warning
7.6. Active Process Instance Link kopierenLink in die Zwischenablage kopiert!
7.7. View the Process Version Link kopierenLink in die Zwischenablage kopiert!
Procedure 7.2. task
- Launch a web browser and navigate to http://localhost:8080/bpel-console.
- Enter your user name and password.
- Click on the tab to see which BPEL processes are currently deployed. The process version information for each of these processes is also visible.
- Only one version of a process can be active at a time. When you open a process definition, the active version is automatically selected.
Note
7.8. About Business Process Analytics Format Link kopierenLink in die Zwischenablage kopiert!
7.9. View the BPAF Data Link kopierenLink in die Zwischenablage kopiert!
Procedure 7.3. task
- Launch a web browser and navigate to http://localhost:8080/bpel-console.
- Enter your user name and password.
- Click on the Managed Instances tab to see which BPEL processes are currently deployed. The process version information for each of these processes is also visible.
- Select a process definition to open it.
- Use the Execution History to produce a chart. Here you can specify a particular period of time to review and choose whether or not to include failed and terminated instances in the chart.
7.11. Configuring Logging Functionality Link kopierenLink in die Zwischenablage kopiert!
Procedure 7.4. task
- Open the
deploy.xmlfile in a text editor.Note
deploy.xmlfile exists with every BPEL deployment unit. - Configure the
deploy.xmlfile as follows:<deploy xmlns="schemas" xmlns:bpl="examples" xmlns:intf="examples/wsdl"> <process name="bpl:HelloGoodbye"> <active>true</active> <process-events generate="all"/> <provide partnerLink="helloGoodbyePartnerLink"> <service name="intf:HelloGoodbyeService" port="HelloGoodbyePort"/> </provide> </process> </deploy>Note
Add theprocess-eventselement to generate all the events. For more information, navigate to the Apache ODE events http://ode.apache.org/ode-execution-events link. - Save the file and exit.
7.12. View the Instance Data Link kopierenLink in die Zwischenablage kopiert!
Procedure 7.5. task
- Launch a web browser and navigate to http://localhost:8080/bpel-console.
- Enter your user name and password.
- Under the Managed Instances tab, select the Open Button list to view the deployed process definitions. When you select any one of the process, it displays the list of process definitions and version of that particular process.
- Select a process instance to open it. You can see its details in the Execution Details panel.
- Click the Instance Data button. It displays all the details about the process.
- Click the Execution Path button. It opens the related instance execution graph.
Note
The instance execution graph is a visual representation of a running instance of a process. It tells the user about the process instance's performance over time. - The View tab shows the instance execution graph, while the Source tab below it shows all of the "activity" events.
7.13. View a History Instance Query Link kopierenLink in die Zwischenablage kopiert!
Procedure 7.6. Task
- Log into the BPEL Web Console.
- Choose a process definition and a process status from the list box.You can also optionally choose to input the correlation key, the start time and the end time as search criteria.
- Go to the History Instances List and double-click on a row. A window will pop up showing you all of the execution events that happened when that process ran.
7.14. Active Process Definition Link kopierenLink in die Zwischenablage kopiert!
7.15. Retired Process Definition Link kopierenLink in die Zwischenablage kopiert!
7.16. Manually Retire an Active Process Definition Link kopierenLink in die Zwischenablage kopiert!
Procedure 7.7. Task
- Launch a web browser and go to http://localhost:8080/bpel-console.
- Input your user name and password.
- Click on the Runtime tab.
- Select the Deployments option.You will now be able to see the version information and current status (active or retired) of each process definition.
- Select the particular version of the process definition you want to retire and then press the button.
Note
If you undeploy a process, its end-points will only deactivate if no previous versions of that process have ever existed.
7.17. Enable Execution Events Link kopierenLink in die Zwischenablage kopiert!
Procedure 7.8. task
- Open the
deploy.xmlfile in a text editor. - Add
<process-events generate="all"/>parameter in thedeploy.xmlfile.
Events are successfully enabled.