Book Image

BPEL and Java Cookbook

By : Jurij Laznik
Book Image

BPEL and Java Cookbook

By: Jurij Laznik

Overview of this book

The Business Process Execution Language (BPEL) has become the de-facto standard for orchestrating web services. BPEL and web services are both clamped into Service-oriented Architecture (SOA). Development of efficient SOA composites too often requires usage of other technologies or languages, like Java. This Cookbook explains through the use of examples how to efficiently integrate BPEL with custom Java functionality.If you need to use BPEL programming to develop web services in SOA development, this book is for you.BPEL and Java Cookbook will show you how to efficiently integrate custom Java functionality into BPEL processes. Based on practical examples, this book shows you the solutions to a number of issues developers come across when designing SOA composite applications. The integration between the two technologies is shown two-fold; the book focuses on the ways that Java utilizes the BPEL and vice-versa.With this book, you will take a journey through a number of recipes that solve particular problems with developing SOA composite applications. Each chapter works on a different set of recipes in a specific area. The recipes cover the whole lifecycle of developing SOA composites: from specification, through design, testing and deployment. BPEL and Java Cookbook starts off with recipes that cover initiation of BPEL from Java and vice-versa. It then moves on to logging and tracing facilities, validation and transformation of BPEL servers, embedding of third-party Java libraries into BPEL. It also covers manipulation with variables in BPEL different techniques of Java code wrapping for web service usage and utilization of XML fa?ßades. After reading BPEL and Java Cookbook you will be able to circumvent many of the issues that developers experience during SOA composite application development.  
Table of Contents (18 chapters)
BPEL and Java Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Publishing a web service without an application server


This recipe explains the method of exposing a web service to clients without deploying it to the application server.

How to do it…

In Java code, we create the web service publisher class and name it as PublisherCCGateway.

Tip

Do not forget to check the Main Method option in the Create Java Class wizard in JDeveloper.

We enter the following Java code into the newly created class:

public class PublisherCCGateway {

  public static void main(String[] args) {
    Endpoint.publish("http://localhost:9999/cc/gateway", new CreditCardGateway());
  }
}

We can now run the web service publisher as a normal Java application.

How it works…

The javax.xml.ws.Endpoint class is part of Java SE 6. With the help of this class, we are able to publish the web service without the use of an application server. The web service is packed and published in the JVM HTTP server built in Java SE 6. With the help of the publish() method, we define the web service endpoint...