Book Image

WS-BPEL 2.0 Beginner's Guide

Book Image

WS-BPEL 2.0 Beginner's Guide

Overview of this book

Table of Contents (19 chapters)
WS-BPEL 2.0 Beginner's Guide
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – adding onEvent to the callback interface


To add the onEvent operation to the callback WSDL interface, we will proceed as follows:

  1. Open the BookWarehousingBPEL.wsdl interface.

  2. Scroll down to the declaration of the BookWarehousingBPELCallback port type. We can see that the port type specifies a single onResult operation:

  3. We will add another operation, onEvent, which we will use to signal that an event has happened on the BPEL process. In our example, we will use the same input message as in the onResult operation. Let's add the onEvent operation declaration:

What just happened?

We have added an onEvent operation declaration to the WSDL callback interface of the BPEL process. We will use this callback operation to signal to the client that an event has happened on the BPEL process.