L8 - Technology Perspective of Service-oriented System Integration Flashcards

1
Q

What are the goals of the lecture?

A

Explain Web service technology and its use in SoSI.

Explain RESTful service technology and its use in SoSI.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the SOA principle of Contracts?

A

Services must have a common way to describe their interface, documents, and constraints.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the SOA principle of Discoverability?

A

There must be means to find out which services are available.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the SOA principle of Loose Coupling?

A

Dependencies between services, contracts, implementations, and consumers should be minimized.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the SOA principle of Statelessness?

A

Services should not hold intermediate states in running instances to support scalability and reuse.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the SOA principle of Composability?

A

Services should be designed to be repeatedly combined with other services.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the standardized steps of Web Services?

A

Publish, Find, Bind.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the standardized sub-technologies of Web Services?

A

XML, SOAP, WSDL, UDDI.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is XML in Web Services?

A

A data representation language used for exchanging information.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is WSDL in Web Services?

A

A contract description language that describes the service interface.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is SOAP in Web Services?

A

A text-based application protocol for sending and receiving messages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is UDDI in Web Services?

A

An architecture for service discovery that catalogs and publishes WSDL descriptions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Why is XML used in Web Services?

A

It is a standard format for data exchange, middleware-independent, and forms the basis of WSDL, SOAP, and UDDI.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is WSDL?

A

An XML-based language that describes the interface of web services, including network addresses and operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What are the three parts of a WSDL document?

A

Root – Service name and included standards.

Abstract interface – Service operations and messages.

Implementation interface – Binding of abstract part to message format, protocol, and address.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What are the key elements of the abstract interface part in WSDL?

A

PortType: Specifies operations and messages.

Operation: Defines a function.

Message: Defines data exchanged, including input and output.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What are the key elements of the implementation interface part in WSDL?

A

Binding: Binds operations to a transport protocol.

Service and Port: Define the service name and network address.

18
Q

What is SOAP?

A

A text-based protocol for exchanging messages in Web Services.

19
Q

What are the elements of a SOAP message?

A

Envelope: Identifies the XML document as a SOAP message.

Header (optional): Contains metadata like security and priority.

Body: Contains the actual message data.

20
Q

What transport protocols does SOAP support?

A

Originally designed for HTTP but can also use HTTPS and other protocols.

21
Q

What is UDDI?

A

A registry that allows service providers to publish services and consumers to discover them.

22
Q

What is the UDDI Invocation Model?

A
  1. Provider registers the service.
  2. Consumer searches for a service.
  3. Consumer binds to the service.
  4. Consumer invokes the service.
23
Q

What is a RESTful service?

A

A service that transfers resource representations over HTTP using a URI.

24
Q

What is a resource in RESTful services?

A

An object (e.g., product, customer, order) accessed at a unique URI.

25
Q

What are the four basic HTTP methods in REST?

A

GET
POST
PUT
DELETE

26
Q

What does the GET method do?

A

Retrieves a resource.

Example: GET /api/customers/2.

27
Q

What does the POST method do?

A

Creates a new resource.

Example: POST /api/customers.

28
Q

What does the PUT method do?

A

Updates an existing resource.

Example: PUT /api/customers/2.

29
Q

What does the DELETE method do?

A

Deletes a resource.

Example: DELETE /api/customers/3.

30
Q

What is the role of media types in RESTful services?

A

Defines the format of data exchange between client and server.

31
Q

What are common media types in RESTful APIs?

A

application/JSON

application/XML

text/plain

text/html

32
Q

How does RESTful services support the SOA principle of Contracts?

A

By applying defined HTTP methods and media types over a URI.

33
Q

How does RESTful services support the SOA principle of Discoverability?

A

Through resource URIs managed by IANA.

34
Q

How does RESTful services support the SOA principle of Loose Coupling?

A

The client-server architecture ensures separation of concerns.

35
Q

How does RESTful services support the SOA principle of Statelessness?

A

RESTful services do not maintain session states between requests.

36
Q

How does RESTful services support the SOA principle of Composability?

A

Limited composability as there is no explicit structuring.

37
Q

What are the key differences in architecture between Web Services and RESTful services?

A

Web Services: Rigid architecture with WSDL, heavyweight.

RESTful: Simpler architecture based on REST principles, lightweight.

38
Q

What are the key differences in flexibility between Web Services and RESTful services?

A

Web Services: Supports multiple protocols, security, and reliability.

RESTful: Supports different data formats (JSON, XML) with fewer constraints.

39
Q

What are the key differences in complexity between Web Services and RESTful services?

A

Web Services: Complex due to formal WSDL and SOAP definitions.

RESTful: Simpler, relying on HTTP methods and resources.

40
Q

What are the key differences in communication style between Web Services and RESTful services?

A

Web Services: Message-oriented, using SOAP envelopes.

RESTful: Resource-oriented, using HTTP methods.

41
Q

What are the key differences in adoption and use cases between Web Services and RESTful services?

A

Web Services: Used in enterprise applications requiring security and transactions.

RESTful: Used in modern web and mobile applications for simplicity and performance.