+ All Categories
Home > Documents > Chapter 19 – Service-oriented Architecture Lecture 1 1.

Chapter 19 – Service-oriented Architecture Lecture 1 1.

Date post: 26-Dec-2015
Category:
Upload: elizabeth-fox
View: 223 times
Download: 3 times
Share this document with a friend
91
Chapter 19 – Service-oriented Architecture Lecture 1 1
Transcript
Page 1: Chapter 19 – Service-oriented Architecture Lecture 1 1.

1

Chapter 19 – Service-oriented Architecture

Lecture 1

Page 2: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Review: Development with and without reuse

Problem and requirements: hungry person wants pizza.

Solutions ?

2

Page 3: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Review: Development with and without reuse

Problem and requirements: hungry person wants pizza

Solution 1:Prepare dough (mix and knead flour, yeast, salt and water)Let dough riseFlatten dough, shapeMake sauce (peel and chop tomatoes, mix with pepper, herbs)Put sauce on doughPut topping (ham, cheese) BakeEat

Do everything from scratch:Advantages: no limitations on design

Disadvantages: need skills, time, resources

3

Page 4: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Review: Development with and without reuse

Problem and requirements: hungry person wants pizza

Solution 2:Buy pizza doughBuy ketchupPut ketchup on doughPut toppingBakeEat

Build with COTS:Advantages: need less skills, need less timeDisadvantages: design limited by available

components. Possible incompatibilities. Need resources

4

Page 5: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Review: Development with and without reuse

Problem and requirements: hungry person wants pizza

Solution 3:Phone Pizza ShopWait for deliveryEat

(Re)use services:Advantages: no baking skills and time, no

resources needed Disadvantages: depends on availability of

pizza shops; it buys only a one-time solution

5

Page 6: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Review: What are the “Software Entities” to compose and reuse?

• Functions

• Modules

• Objects

• Components

• Services

• …2010

2000

1990

1980

1970

1960

1968: Douglas McIlroy: “Mass Produced Software Components”

2002: Clemens Szyperski: “Component Software – Beyond Object Oriented Programming”

6

Page 7: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Review: Objects-Components-Services

Entities for Reuse and Composition•Abstraction

•Encapsulation

Objects Components Services•Location: same process

•Inheritance

•Polymorphism

•Location: different processes, same environment

•Usually some runtime infrastructure needed

•Provided and required interfaces

•Location: different environments

•More emphasis on interface/contract/service agreement

•Mechanisms for dynamic discovery

•Dynamically composable

7

Page 8: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Outline• Concepts: Services, SOA, WebServices

• Services as reusable components

• Service engineering

• Software development with services

8

Page 9: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Reuse and Composition in Service Computing

Main Bibliography:Chap. 19, Sommerville, Software Engineering 9th Ed.Additional Reading:Thomas Erl: SOA: Concepts, Technology and Design

9

Page 10: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Outline• Concepts: Services, SOA, WebServices

• Services as reusable components

• Service engineering

• Software development with services

10

Page 11: Chapter 19 – Service-oriented Architecture Lecture 1 1.

11

Web services

A web service is an instance of a more general notion of a service:

“an act or performance offered by one party to another. Although the process may be tied to a physical product, the performance is essentially intangible and does not normally result in ownership of any of the factors of production”.

The essence of a service, therefore, is that the provision of the service is independent of the application using the service.

Service providers can develop specialized services and offer these to a range of service users from different organizations.

Page 12: Chapter 19 – Service-oriented Architecture Lecture 1 1.

12

Service-oriented architectures (SOA)

A means of developing distributed systems where the components are stand-alone services

Services may execute on different computers from different service providers

Standard protocols have been developed to support service communication and information exchange

Page 13: Chapter 19 – Service-oriented Architecture Lecture 1 1.

13

Service-oriented architecture

Page 14: Chapter 19 – Service-oriented Architecture Lecture 1 1.

14

Benefits of SOA

Services can be provided locally or outsourced to external providers

Services are language-independent

Investment in legacy systems can be preserved

Inter-organisational computing is facilitated through simplified information exchange

Page 15: Chapter 19 – Service-oriented Architecture Lecture 1 1.

15

Benefits of services

Provider independence.

Public advertising of service availability.

Potentially, run-time service binding.

Opportunistic construction of new services through composition.

Pay for use of services.

Smaller, more compact applications.

Reactive and adaptive applications.

Page 16: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Services standards

• Services are based on agreed standards so can be provided on any platform and written in any programming language.

• Web services: one kind of services

16

Page 17: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Web Services Definition by W34C

• A Web service is a software application

• identified by an URI,

• whose interfaces and bindings are capable of being defined, described and discovered by XML artifacts and

• supports direct interactions with other software applications

• using XML based messages

• via internet-based protocols

17

Page 18: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Web Services

• The Web Services initiative has been driven by standards from its beginning (vs. Components where standardization has been tried later and several different standards=component models are in use)

• Key standards– XML : Extensible Markup Language– SOAP : Simple Object Access Protocol;– WSDL : Web Services Description Language;– UDDI : Universal Description, Discovery and

Integration.– WS-BPL: Web Services Business Process Execution

Language18

Page 19: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Key standards

SOAP A message exchange standard that supports service

communication Defines a uniform way of passing XML-encoded data Defines a way to bind HTTP as the underlying communication

protocol

WSDL (Web Service Definition Language) This standard allows a service interface and its bindings to be

defined

WS-BPEL A standard for workflow languages used to define service

composition

UDDI -- Defines the components of a service specification that may be used to discover the existence of a service

Page 20: Chapter 19 – Service-oriented Architecture Lecture 1 1.

SOA based on Web Services

Serviceregistry

Servicerequestor

Serviceprovider

Service

Find Publish

Bind (SOAP)(WSDL)

(UDDI)

20

Page 21: Chapter 19 – Service-oriented Architecture Lecture 1 1.

More Web Services Standards

Transport (HTTP, HTTPS, SMTP, ...)

Messaging (SOAP)

Service definition (UDDI, WSDL)

Process (WS-BPEL)

Support (WS-Security, WS-Addressing, ...)

XML technologies (XML, XSD, XSLT, ....)

21

Page 22: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Distributed Object Computing vs. SOA / WS

IP

TCP

IIOP

Object Request Broker

IDL

HTTP

SOAP

WSDL

Web Server/ Application Server

Programming languages

Programming languages22

Page 23: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Distributed Object Computing vs. SOA / WS

• Within enterprise

• Tied to a set of programming languages

• Procedural

• Usually bound to a particular transport

• Efficient processing

• Between enterprises

• Program language independent

• Message-driven

• Easy bound to different transports

• Lower effficiency

Distributed Object Computing SOA / WS

23

Page 24: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Web Application vs. SOA / WS

• User-to-program interaction

• Static integration of components

• Monolithic service

• Program-to-program interaction

• Possibility of dynamic integration of components

• Possibility of service aggregation

24

Page 25: Chapter 19 – Service-oriented Architecture Lecture 1 1.

25

Services scenario

An in-car information system provides drivers with information on weather, road traffic conditions, local information etc. This is linked to car radio so that information is delivered as a signal on a specific radio channel.

The car is equipped with GPS receiver to discover its position and, based on that position, the system accesses a range of information services. Information may be delivered in the driver’s specified language.

Page 26: Chapter 19 – Service-oriented Architecture Lecture 1 1.

A service-based, in-car information system

Page 27: Chapter 19 – Service-oriented Architecture Lecture 1 1.

27

Advantage of SOA for this application

It is not necessary to decide when the system is programmed or deployed what service provider should be used or what specific services should be accessed. As the car moves around, the in-car software uses the service

discovery service to find the most appropriate information service and binds to that.

Because of the use of a translation service, it can move across borders and therefore make local information available to people who don’t speak the local language.

Page 28: Chapter 19 – Service-oriented Architecture Lecture 1 1.

28

Service-oriented software engineering

Existing approaches to software engineering have to evolve to reflect the service-oriented approach to software development Service engineering. The development of dependable, reusable services

• Software development for reuse Software development with services. The development of dependable software where services are the fundamental components

• Software development with reuse

Page 29: Chapter 19 – Service-oriented Architecture Lecture 1 1.

29

Outline

Concepts: Services, SOA, WebServices

Services as reusable components

Service engineering

Software development with services

Page 30: Chapter 19 – Service-oriented Architecture Lecture 1 1.

30

Services as reusable components

A service can be defined as: A loosely-coupled, reusable software component that encapsulates discrete functionality which may be distributed and programmatically accessed. A web service is a service that is accessed using standard Internet and XML-based protocols

**

A critical distinction between a service and a component as defined in CBSE is that services are independent Services do not have a ‘requires’ interface Services rely on message-based communication with messages expressed in XML

Page 31: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Synchronous interaction

Tomato soup please

Waiter Diner

What would you like?

And to follow?

Fillet steak

How would you like it cooked?

Rare please

With salad or french fries?

Salad please

ETC.

31

Page 32: Chapter 19 – Service-oriented Architecture Lecture 1 1.

An order as an XML message

<starter> <dish name = “soup” type = “tomato” /> <dish name = “soup” type = “fish” /> <dish name = “pigeon salad” /> </starter> <main course> <dish name = “steak” type = “sirloin” cooking = “medium” /> <dish name = “steak” type = “fillet” cooking = “rare” /> <dish name = “sea bass”> </main> <accompaniment> <dish name = “french fries” portions = “2” /> <dish name = “salad” portions = “1” /> </accompaniment>

32

Page 33: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Message-based communication

33

Page 34: Chapter 19 – Service-oriented Architecture Lecture 1 1.

34

Web service description language (WSDL)

An Interface Definition Language (IDL) **

An IDL is needed when languages differ

Other example IDL’s: Corba IDL (Object-oriented syntax) OSF’s DCE (C like syntax) DCOM IDL based on OSF’s DCE and used by Microsoft’s DCOM Sun XDR (An IDL for RPC)

Page 35: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Web service description language

• The service interface is defined in a service description expressed in WSDL. The WSDL specification defines

– What operations the service supports and the format of the messages that are sent and received by the service

– How the service is accessed - that is, the binding maps the abstract interface onto a concrete set of protocols

– Where the service is located. This is usually expressed as a URI (Universal Resource Identifier)

35

Page 36: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Structure of a WSDL specification

Intro

Abstract interface

Concreteimplementation

WSDL service definition

XML namespace declarations

Type declarationsInterface declarationsMessage declarations

Binding declarationsEndpoint declarations

36

Page 37: Chapter 19 – Service-oriented Architecture Lecture 1 1.

37

WSDL specification components

The ‘what’ part of a WSDL document, called an interface, specifies what operations the service supports, and defines the format of the messages that are sent and received by the service.

The ‘how’ part of a WSDL document, called a binding, maps the abstract interface to a concrete set of protocols. The binding specifies the technical details of how to communicate with a Web service.

The ‘where’ part of a WSDL document describes the location of a specific Web service implementation (its endpoint).

Page 38: Chapter 19 – Service-oriented Architecture Lecture 1 1.

38

Part of a WSDL description for a web service

Define some of the types used. Assume that the namespace prefixes ‘ws’ refers to the namespace URI for XML schemas and the namespace prefix associated with this definition is weathns.

<types><xs: schema targetNameSpace = “http://.../weathns”

xmlns: weathns = “http://…/weathns” ><xs:element name = “PlaceAndDate” type = “pdrec” /><xs:element name = “MaxMinTemp” type = “mmtrec” /><xs: element name = “InDataFault” type = “errmess” />

<xs: complexType name = “pdrec”<xs: sequence><xs:element name = “town” type = “xs:string”/><xs:element name = “country” type = “xs:string”/><xs:element name = “day” type = “xs:date” /></xs:complexType>

Definitions of MaxMinType and InDataFault here

</schema></types>

Page 39: Chapter 19 – Service-oriented Architecture Lecture 1 1.

39

Part of a WSDL description for a web service

Now define the interface and its operations. In this case, there is only a single operation to return maximum and minimum temperatures.

<interface name = “weatherInfo” ><operation name = “getMaxMinTemps” pattern = “wsdlns: in-out”>

<input messageLabel = “In” element = “weathns: PlaceAndDate” /><output messageLabel = “Out” element = “weathns:MaxMinTemp” /><outfault messageLabel = “Out” element = “weathns:InDataFault” />

</operation></interface>

Page 40: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Main elements of a WSDL document

• XML elements in its description:– Abstract interface:

• <portType> (renamed <interface> in WSDL 2.0)

• <operation>

• <message>

• <types>

– Concrete implementation:• <binding>

• <port> (renamed <endpoint> in WSDL 2.0)

• <service>

40

Page 41: Chapter 19 – Service-oriented Architecture Lecture 1 1.

WSDL document structure<definitions>

<portType>

</portType>

<message>

</message>

<types>

</types>

<binding>

</binding>

</definitions> 41

Page 42: Chapter 19 – Service-oriented Architecture Lecture 1 1.

<portType> Element• This is probably the most important element• Describes the web service

– Operations that can be performed– Messages that are involved– Comparable to a function/method library in a programming language– A port is defined by associating a network address with a reusable binding

42

Page 43: Chapter 19 – Service-oriented Architecture Lecture 1 1.

<message> Element

• Defines the data elements of an operation

• Each message can have one or more parts

• Each part is comparable to a function/method call in a programming language

43

Page 44: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Simplified Example

<message name="getTermRequest">  <part name="term" type="xs:string"/></message>

<message name="getTermResponse">  <part name="value" type="xs:string"/></message>

<portType name="glossaryTerms">  <operation name="getTerm">    <input message="getTermRequest"/>    <output message="getTermResponse"/>  </operation></portType>

44

Page 45: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Types of operations

– One-way• Can receive a message, but will not return a message

• Example use: receiving request to insert a new value in a database

– Request-response• Can receive a request and will return a response

• Example use: receiving a request for a value from a database and sending it back in a response

– Solicit-response• Can send a request and will wait for a response

• Example use: requesting a value from a database and having it sent back in the response

– Notification• Can send a message, but will not wait for a response

• Example use: inserting a new value in a database

45

Page 46: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Example of one-way operation

<message name="newTermValues">  <part name="term" type="xs:string"/>  <part name="value" type="xs:string"/></message>

<portType name="glossaryTerms">  <operation name="setTerm">    <input name="newTerm" message="newTermValues"/>  </operation></portType >

46

Page 47: Chapter 19 – Service-oriented Architecture Lecture 1 1.

<binding> Element

• One binding represents one possible transport technology the service can use to communicate

• A binding can apply to an entire interface or just a specific operation

• Has two attributes:– Name – Can be set to any value, which represents the name of the

binding

– Type – Points to the port (interface) for the binding

• When using SOAP, a <soap:binding> sub-element is used to set the style and transport values with elements:– Style – with value of either “rpc” or “document”

– Transport – defines the SOAP protocol to use

(like HTTP)

47

Page 48: Chapter 19 – Service-oriented Architecture Lecture 1 1.

SOAP binding example

<portType name="glossaryTerms">  <operation name="getTerm">    <input message="getTermRequest"/>    <output message="getTermResponse"/>  </operation></portType>

<binding type="glossaryTerms" name="b1">   <soap: binding style="document"   transport="http://schemas.xmlsoap.org/soap/http" />     </operation></binding>

48

Page 49: Chapter 19 – Service-oriented Architecture Lecture 1 1.

<port> (<endpoint>) Element

• A <port> or <endpoint> represents the physical address at which a service (interface) can be accessed with a specific protocol

• A <service> groups a set of related endpoints

49

Page 50: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Endpoint example

<service name=“GlossaryTermsService”> <port name=“GlossaryTermsSoap1” binding=“b1”> <soap: address location=“http://myserver.com/WebServices/GlossaryTerms1.asmx ” /> </port> </service>

50

Page 51: Chapter 19 – Service-oriented Architecture Lecture 1 1.

IDL model for Web Services

• WSDL acts as an IDL for Web Services distributed programming model

• Definitions are processed by an IDL compiler to generate:– stubs for clients which look like local function calls– Dispatch routines for the server that invoke the developer’s code

• Tools can generate WSDL descriptions from implementations

• Tools can generate implementation stubs from WSDL• Technology examples:

– Java: Axis: wsdl2java, java2wsdl– .NET: wsdl.exe

51

Page 52: Chapter 19 – Service-oriented Architecture Lecture 1 1.

How Clients Use Services

• In order to use a service, a Client program needs only its WSDL (contains abstract interface description and URI of service endpoint)

• The client program can access the service in many ways:– Using Dynamic Invocation Interface ( DII)

– Using generated Stubs from Service WSDL description

– Using Dynamic Proxy

52

Page 53: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Client using DII

import javax.xml.rpc.Call;

import javax.xml.rpc.Service;

import javax.xml.namespace.QName;

String endpoint = "http://localhost:8080/axis/AddFunction.jws";

Service service = new Service();

Call call = (Call) service.createCall();

call.setOperationName(new QName(endpoint, "addInt"));

call.setTargetEndpointAddress( new java.net.URL(endpoint) );

Integer ret = (Integer)call.invoke(new Object[]{new Integer(5), new Integer(6)});

53

Page 54: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Client using Generated Stubs

import localhost.*;

AddFunctionService afs = new AddFunctionServiceLocator();

AddFunction af = afs.getAddFunction();

System.out.println("addInt(5, 3) = " + af.addInt(5, 3));

Generate the stubs with wsdl2java

54

Page 55: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Client using Dynamic Proxy

import javax.xml.namespace.QName;

import javax.xml.rpc.*;

String wsdlUrl = "http://localhost:8080/axis/AddFunction.jws?wsdl";

String nameSpaceUri = "http://localhost:8080/axis/AddFunction.jws";

String serviceName = "AddFunctionService";

String portName = "AddFunction";

ServiceFactory serviceFactory = ServiceFactory.newInstance();

Service afs = serviceFactory.createService(new java.net.URL(wsdlUrl),

new QName(nameSpaceUri, serviceName));

AddFunctionServiceIntf afsIntf = (AddFunctionServiceIntf)afs.getPort(

new QName(nameSpaceUri, portName), AddFunctionServiceIntf.class);

System.out.println("addInt(5, 3) = " + afsIntf.addInt(5, 3));

55

Page 56: Chapter 19 – Service-oriented Architecture Lecture 1 1.

Outline• Concepts: Services, SOA, WebServices

• Services as reusable components

• Service engineering

• Software development with services

56

Page 57: Chapter 19 – Service-oriented Architecture Lecture 1 1.

57

Service engineering

The process of developing services for reuse in service-oriented applications

The service has to be designed as a reusable abstraction that can be used in different systems.

Generally useful functionality associated with that abstraction must be designed and the service must be robust and reliable.

The service must be documented so that it can be discovered and understood by potential users.

Page 58: Chapter 19 – Service-oriented Architecture Lecture 1 1.

58

The service engineering process

Page 59: Chapter 19 – Service-oriented Architecture Lecture 1 1.

59

Stages of service engineering

Service candidate identification, where you identify possible services that might be implemented and define the service requirements.

Service design, where you design the logical and WSDL service interfaces.

Service implementation and deployment, where you implement and test the service and make it available for use.

Page 60: Chapter 19 – Service-oriented Architecture Lecture 1 1.

60

Service candidate identification

Services should support business processes.

Service candidate identification involves understanding an organization’s business processes to decide which reusable services could support these processes.

Three fundamental types of service Utility services that implement general functionality used by different business processes. Business services that are associated with a specific business function e.g., in a university, student registration. Coordination services that support composite processes such as ordering.

Page 61: Chapter 19 – Service-oriented Architecture Lecture 1 1.

61

Another classificationTask and entity-oriented services

Task-oriented services are those associated with some activity.

Entity-oriented services are like objects. They are associated with a business entity such as a job application form.

Utility or business services may be entity- or task-oriented, coordination services are always task-oriented.

Page 62: Chapter 19 – Service-oriented Architecture Lecture 1 1.

62

Service classification

Utility Business Coordination

Task Currency converterEmployee locator

Validate claim formCheck credit rating

Process expense claimPay external supplier

Entity Document style checkerWeb form to XML converter

Expenses formStudent application form

Page 63: Chapter 19 – Service-oriented Architecture Lecture 1 1.

63

Key points

Service-oriented software engineering is based on the notion that programs can be constructed by composing independent services which encapsulate reusable functionality.

Service interfaces are defined in WSDL. A WSDL specification includes a definition of the interface types and operations, the binding protocol used by the service and the service location.

Services may be classified as utility services, business services or coordination services.

Page 64: Chapter 19 – Service-oriented Architecture Lecture 1 1.

64

Chapter 19 – Service-oriented Architecture

Lecture 2

Page 65: Chapter 19 – Service-oriented Architecture Lecture 1 1.

65

Service identification

Is the service associated with a single logical entity used in different business processes?

Is the task one that is carried out by different people in the organization?

Is the service independent?

Does the service have to maintain state? Is a database required?

Could the service be used by clients outside the organisation?

Are different users of the service likely to have different non-functional requirements?

Page 66: Chapter 19 – Service-oriented Architecture Lecture 1 1.

66

Service identification example

A large company, which sells computer equipment, has arranged special prices for approved configurations for some customers.

To facilitate automated ordering, the company wishes to produce a catalog service that will allow customers to select the equipment that they need.

Unlike a consumer catalog, orders are not placed directly through a catalog interface. Instead, goods are ordered through the web-based procurement system of each company that accesses the catalog as a web service.

Most companies have their own budgeting and approval procedures for orders and their own ordering process must be followed when an order is placed.

Page 67: Chapter 19 – Service-oriented Architecture Lecture 1 1.

67

Catalog services

Created by a supplier to show which good can be ordered from them by other companies

Service requirements Specific version of catalogue should be created for each client Catalogue shall be downloadable The specification and prices of up to 6 items may be compared Browsing and searching facilities shall be provided A function shall be provided that allows the delivery date for ordered items to be predicted Virtual orders shall be supported which reserve the goods for 48 hours to allow a company order to be placed

Page 68: Chapter 19 – Service-oriented Architecture Lecture 1 1.

68

Catalogue - Non-functional requirements

Access shall be restricted to employees of accredited organisations

Prices and configurations offered to each organisation shall be confidential

The catalogue shall be available from 0700 to 1100

The catalogue shall be able to process up to 10 requests per second

Page 69: Chapter 19 – Service-oriented Architecture Lecture 1 1.

69

Functional descriptions of catalog service operations

Operation Description

MakeCatalog Creates a version of the catalog tailored for a specific customer. Includes an optional parameter to create a downloadable PDF version of the catalog.

Compare Provides a comparison of up to six characteristics (e.g., price, dimensions, processor speed, etc.) of up to four catalog items.

Lookup Displays all of the data associated with a specified catalog item.

Search This operation takes a logical expression and searches the catalog according to that expression. It displays a list of all items that match the search expression.

CheckDelivery Returns the predicted delivery date for an item if ordered that day.

MakeVirtualOrder Reserves the number of items to be ordered by a customer and provides item information for the customer’s own procurement system.

Page 70: Chapter 19 – Service-oriented Architecture Lecture 1 1.

70

Service interface design

Involves thinking about the operations associated with the service and the messages exchanged

The number of messages exchanged to complete a service request should normally be minimized.

Service state information may have to be included in messages

Page 71: Chapter 19 – Service-oriented Architecture Lecture 1 1.

71

Interface design stages

Logical interface design Starts with the service requirements and defines the operation names and parameters associated with the service. Exceptions should also be defined

Message design Design the structure and organization of the input and output messages. Notations such as the UML are a more abstract representation than XML

WSDL description The logical specification is converted to a WSDL description

Page 72: Chapter 19 – Service-oriented Architecture Lecture 1 1.

72

Catalog interface design

Operation Inputs Outputs Exceptions

MakeCatalog mcInCompany idPDF-flag

mcOutURL of the catalog for that company

mcFaultInvalid company id

Compare compInCompany idEntry attribute (up to 6)Catalog number (up to 4)

compOutURL of page showing comparison table

compFaultInvalid company idInvalid catalog numberUnknown attribute

Lookup lookInCompany idCatalog number

lookOutURL of page with the item information

lookFaultInvalid company idInvalid catalog number

Page 73: Chapter 19 – Service-oriented Architecture Lecture 1 1.

73

Catalog interface design

Operation Inputs Outputs Exceptions

Search searchInCompany idSearch string

searchOutURL of web page with search results

searchFaultInvalid company idBadly formed search string

CheckDelivery gdInCompany idCatalog numberNumber of items required

gdOutCatalog numberExpected delivery date

gdFaultInvalid company idInvalid catalog numberNo availabilityZero items requested

PlaceOrder poInCompany idNumber of items requiredCatalog number

poOutCatalog numberNumber of items requiredPredicted delivery dateUnit price estimateTotal price estimate

poFaultInvalid company idInvalid catalog numberZero items requested

Page 74: Chapter 19 – Service-oriented Architecture Lecture 1 1.

74

Service implementation and deployment

Programming services using a standard programming language or a workflow language

Services then have to be tested by creating input messages and checking that the output messages produced are as expected

Deployment involves publicizing the service and installing it on a web server. Current servers provide support for service installation

Page 75: Chapter 19 – Service-oriented Architecture Lecture 1 1.

75

Service descriptions

Information about your business, contact details, etc. This is important for trust reasons. Users of a service have to be confident that it will not behave maliciously.

An informal description of the functionality provided by the service. This helps potential users to decide if the service is what they want.

A detailed description of the interface types and semantics.

Subscription information that allows users to register for information about updates to the service.

Page 76: Chapter 19 – Service-oriented Architecture Lecture 1 1.

76

UML definition of input and output messages

Page 77: Chapter 19 – Service-oriented Architecture Lecture 1 1.

77

Legacy system services

An important application of services is to provide access to functionality embedded in legacy systems

Legacy systems offer extensive functionality and this can reduce the cost of service implementation

External applications can access this functionality through the service interfaces

Page 78: Chapter 19 – Service-oriented Architecture Lecture 1 1.

78

Services providing access to a legacy system

Page 79: Chapter 19 – Service-oriented Architecture Lecture 1 1.

79

Software development with services

Existing services are composed and configured to create new composite services and applications

The basis for service composition is often a workflow Workflows are logical sequences of activities that, together, model a coherent business process For example, provide a travel reservation services which allows flights, car hire and hotel bookings to be coordinated

Page 80: Chapter 19 – Service-oriented Architecture Lecture 1 1.

80

Vacation package workflow

Page 81: Chapter 19 – Service-oriented Architecture Lecture 1 1.

81

Service construction by composition

Page 82: Chapter 19 – Service-oriented Architecture Lecture 1 1.

82

In practice, service composition is much more complex than this simple model implies.

For example, you have to consider the possibility of service failure and incorporate mechanisms to handle these failures.

You also have to take into account exceptional demands made by users of the application.

For example, say a traveler was disabled and required a wheelchair to be rented and delivered to the airport. This would require extra services to be implemented and composed, and additional steps to be added to the workflow.

Page 83: Chapter 19 – Service-oriented Architecture Lecture 1 1.

83

You must be able to cope with situations where the workflow has to be changed because the normal execution of one of the services usually results in an incompatibility with some other service execution.

You have to ‘undo’ one of the successfully completed services

In workflow terminology, this is called a ‘compensation action’.

Compensation actions are used to undo actions that have already been completed but which must be changed as a result of later workflow activities.

Page 84: Chapter 19 – Service-oriented Architecture Lecture 1 1.

84

Construction by composition

Formulate outline workflow In this initial stage of service design, you use the requirements

for the composite service as a basis for creating an ‘ideal’ service design.

Discover services During this stage of the process, you search service registries or

catalogs to discover what services exist, who provides these services and the details of the service provision.

Select possible services Your selection criteria will obviously include the functionality of

the services offered. They may also include the cost of the services and the quality of service (responsiveness, availability, etc.) offered.

Page 85: Chapter 19 – Service-oriented Architecture Lecture 1 1.

85

Construction by composition

Refine workflow. This involves adding detail to the abstract description and

perhaps adding or removing workflow activities.

Create workflow program During this stage, the abstract workflow design is transformed to

an executable program and the service interface is defined. You can use a conventional programming language, such as Java or a workflow language, such as WS-BPEL.

Test completed service or application The process of testing the completed, composite service is more

complex than component testing in situations where external services are used.

Page 86: Chapter 19 – Service-oriented Architecture Lecture 1 1.

86

A fragment of a hotel booking workflow

Page 87: Chapter 19 – Service-oriented Architecture Lecture 1 1.

87

Workflow design and implementation

WS-BPEL is an XML-standard for workflow specification. However, WS-BPEL descriptions are long and unreadable

Graphical workflow notations, such as BPMN, are more readable and WS-BPEL can be generated from them

In inter-organisational systems, separate workflows are created for each organisation and linked through message exchange

Page 88: Chapter 19 – Service-oriented Architecture Lecture 1 1.

88

Interacting workflows

Page 89: Chapter 19 – Service-oriented Architecture Lecture 1 1.

89

Service testing

Testing is intended to find defects and demonstrate that a system meets its functional and non-functional requirements.

Service testing is difficult as (external) services are ‘black-boxes’. Testing techniques that rely on the program source code cannot be used.

Page 90: Chapter 19 – Service-oriented Architecture Lecture 1 1.

90

Service testing problems

External services may be modified by the service provider thus invalidating tests which have been completed.

Dynamic binding means that the service used in an application may vary - the application tests are not, therefore, reliable.

The non-functional behaviour of the service is unpredictable because it depends on load.

If services have to be paid for as used, testing a service may be expensive.

It may be difficult to invoke compensating actions in external services as these may rely on the failure of other services which cannot be simulated.

Page 91: Chapter 19 – Service-oriented Architecture Lecture 1 1.

91

Key points

The service engineering process involves identifying candidate services for implementation, defining the service interface and implementing, testing and deploying the service.

Service interfaces may be defined for legacy software systems which may then be reused in other applications.

Software development using services involves creating programs by composing and configuring services to create new composite services.

Business process models define the activities and information exchange in business processes. Activities in the business process may be implemented by services so the business process model represents a service composition.

Techniques of software testing based on source-code analysis cannot be used in service-oriented systems that rely on externally provided services.


Recommended