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 – review of existing variables


To view existing variables in BookWarehousingBPEL, we will do the following:

  1. We will open the BPEL process and click on the (x) icon:

  2. This will open a dialog, where we can see that we have six variables, all of them as MessageType:

What just happened?

We have seen that in the BookWarehousingBPEL process we already have six variables. All of them are MessageType. The inputVariable activity holds the message payload required for the process input. The outputVariable activity holds the response that the process will return. The BookstoreARequest activity holds the request message for the BookstoreA partner link, and the BookstoreAResponse activity holds the response message for the same partner link. The BookstoreBRequest and BookstoreBResponse activities hold the messages for the BookstoreB partner link, respectively.

Declaring XML type variables

We will first learn how to declare XML type variables. We will declare two new XML type variables in...