Tenta T^T Flashcards

1
Q

XML Example

A

<?xml version=”1.0” encoding =”UTF-8”>

<bookstore>
<customer>
<firstname>John</firstname>
<lastname>Doe</lastname>
<email>johndoe@ex.com</email>
</customer>
<purchased_books>
<book>
<title>New Book</title>
<author>New Author</author>
<year>1999</year>
<price>99.00</price>
</book>
</purchased_books>
</bookstore>

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

XML Simple Example

Element

A

<?xml version=”1.0” encoding =”UTF-8”>

<bookstore>

<book>
<title>New Book</title>
<author>New Author</author>
<year>1999</year>
<price>99.00</price>
</book>

</bookstore>

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

XML Simple Example

Attribute

A

<?xml version=”1.0” encoding =”UTF-8”>

<bookstore>

<book category =”children”>
<title>New Book</title>
<author>New Author</author>
<year>1999</year>
<price>99.00</price>
</book>

</bookstore>

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

WSDL Root

Example

A

<definitions name=”BookOrder” targetNamespace=”http://bookstore.com/bookorder”
xmlns:tns=”http://bookstore.com/bookorder”
xmlns:xds=”….”
xmlns:soap=”….”
xmlns=”….”
>
……..
Abstract Message
Abstract PortType
Implementation binding
Implementation service

</definitions>

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

WSDL Abstract Message

Example

A

Root
<message name = “GetBookRequest”>
<part name = “parameters” element=”tns:BookRequest”/>
</message>
<message name = “GetBookResponse”>
<part name = “parameters” element=”tns:BookResponse”/>
</message>

Abstract PortType
Implementation binding
Implementation service

</definitions>

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

WSDL Abstract PortType

Example

A

Root
Abstract Message

<portType name=”BookPortType”>
<operation name=”operationBook”>
<input message=”BookRequest”/>
<output message=”BookResponse”/>
</operation>
</portType>

Implementation binding
Implementation service

</definitions>

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

WSDL Implementation binding

Example

A

Root
Abstract Message
Abstract PortType

<bindning name=”BookBinding” type=”http://bookstore.com/bookorder”>
<soap:binding style=”document” transport=”http://….”/>
<operation name=”operationBook”>
<soap:operation ….>
<input></input>
<soap:body use=”literal”/>
</input>

<output>
<soap:body use=”literal”/>
<output></output>

</operation>

**Implementation service**
</definitions>
</output>

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

WSDL Implementation service

Example

A

Root
Abstract Message
Abstract PortType
Implementation binding

<service name=”BookOrder”>
<port name=”BookPortType” binding=”tns:BookBinding”>
<soap:address location=”http://bookstore.com/bookorder”/>
</port>
</service>
</definitions>

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

3 evolutionary-first solutions for data sharing/integration

A

FTP (File Transfer Protocol)
Common DB
Sockets

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

FTP (File Transfer Protocol)

A

Non-real-time integration. A simple method where one application writes to a file that another application reads at a later time

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

Common DB

A

Non-real-time integration. Multiple applications read and write to the same database, enabling multipoint integration via SQL.

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

Sockets

A

Real-time integration. Communication between applications using websockets, allowing direct data sharing and real-time interactions

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

What is Linked Data?

A

Linked Data is a method for publishing and interconnection structured data on the web, based on four principles.

  1. Use URI (Unique Resource Identifier) as resource names
  2. Use HTTP URIs to look up data/URI
  3. Provide useful information using RDF format
  4. Include links to other related resources to create an interconnected data network
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is XML?

A

XML (Extensible Markup Language) is used to structure, store and transport data. Validation ensures that the document adheres to a specified XML schema (XDS).

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

What are its components? Why XML?

A

Root Node - The main node

Element Node -
Defines the structure of the data and can contain sub-elements

Attribute Node - Provides metadata for elements

Data Node - The actual content within an element or attribute

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

What is JSON?

A

JSON is a human-readable data exchange format that uses key-value pairs.
Ex
{
“customer”: {
“firstname”: ”John”,
“lastname”: ”Doe”,
“email”: “johndoe@ex.com”,
“purchased_books”: [
{
“title”: “New Book”,
“author”: ”New Author”,
“year”: 1999,
“price”: 99.00
}
]
}
}

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

Similarities between JSON and XML:

A

Used for Data Exchange - Both JSON and XML are widely used for structuring and exchanging data between applications

Human and machine readable - Both formats are readable by both humans and machines.

Hierarchical Data Representation - Both support nested (tree-like) structures.

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

Differences between JSON and XML:

A

Format: JSON used key-value pairs, whereas XML is based on tags

Readability: JSON is more compact and easier to read

Metadata: XML supports more metadata and complex structures

Performance: JSON is generally faster to parse due to its simpler syntax.

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

What is XDS?

A

XSD (XML Schema Definition) is a language used to define the structure of XML documents, specifying allowed elements, attributes, data types, and element order. XSD works as a framework that facilitates data validation.

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

What is RDF?

RDF (Resource Description Framework)

A

RDF (Resource Description Framework)
is a framework for describing relationships between resources on the web using a subject–predicate–object model.

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

What is RESTful and what are its three core elements?

A

RESTful (Representational State Transfer)
is an architectural style for building web services. Built on stateless operations that integrate using standardized HTTP methods.

Three core elements:
Resources – Represented as URLs.
Representation – Each request is independent.
Standard methods – Uses HTTP methods (GET, POST, PUT, DELETE).

22
Q

What are Web Services?

A

Web Services allow different systems to communicate over a network using standardized protocols such as SOAP and REST. Uses HTTP for transmitting data.

23
Q

What are Sockets?

A

Sockets enable real-time communication between applications through a network connection.

24
Q

What is an API?

A

API (Application Programming Interface)
is a set of rules and specifications that software follows to communicate with other software. Acts as an interface between different systems, allowing them to interact with each other.

25
Q

Advantages of loose and tight coupling

A

Loose coupling – Systems are less dependent on each other, providing higher flexibility

Tight coupling – Systems are highly interdependent, making integration more complex

26
Q

What is SOA and its 5 design principles?

A

SOA (Service-Oriented Architecture)
is a design pattern where services communicate over a network.

Five design principles:
Loose coupling – Minimal dependency between services.

Reusability – Services can be reused in different systems.

Service contract – Each service has a defined API.

Composability – Services can be combined to form larger systems.

Autonomy – Services operate independently.

27
Q

What is WSDL and its components?

A

WSDL (Web Services Description Language) is an XML-based format for describing web services.

Components of WSDL:
Types – Defines data types.

Message – Describes input and output data.

PortType – Defines operations.

Binding – Specifies protocols (e.g., SOAP or HTTP).

28
Q

Explain IoT

A

IoT (Internet of Things)
refers to the connection of physical devices to the internet for data exchange.

29
Q

Explain IoSI

A

IoSI (Internet of Service Integration)
refers to the integration of various services over the internet to enable seamless communication

30
Q

What is MOM?

A

MOM (Message-Oriented Middleware)
is middleware that enables asynchronous message exchange between systems. Functions as an intermediate layer that sends, receives and manages data between different applications and systems, regardless of platform and language.

31
Q

What is an RPC adapter?

A

RPC (Remote Procedure Call) adapter
allows programs to invoke functions on a remote server over a network, regardless of platform or programming language.

32
Q

What are patterns and which (message) patterns exist?

A

Patterns are reusable solutions to common problems in system integration.

Examples of message patterns:
Request-Response

Publish-Subscribe

Point-to-Point

Event-Driven Messaging

33
Q

Request-Response

A

When an application sends a message, how can it get a response from the receiver?
Send a pair of Request-Reply messages, each on its own channel.

Requestor -> Request -> Request Channel -> Replier - > Reply -> Reply Channel - Requestor

34
Q

Publish-Subscribe

A

How can the sender broadcast an event to all interested receivers?

Send the event on a Publish-Subscribe Channel, which delivers a copy of a particular event to each receiver.

Sender -> Message -> Message Channel -> Multiple same Messages out -> to repsective Reciver

35
Q

Point-to-Point

A

How can the caller be sure that exactly one receiver will receive the document or perform the call?

Send the message on a Point-to-Point Channel, which ensures that only one receiver will receive a particular message.

Sender -> Message n -> Message Channel -> Message n -> Reciver

36
Q

Event-Driven Messaging

A

How can an application automatically consume messages as they become available?

The application should use an Event-Driven Consumer, one that is automatically handed messages as they’re delivered on the channel.

Sender -> Message -> > Event-Driven Consummer (in Reciver) -> Message to Reciver

37
Q

What is middleware and which concepts exist?

A

Middleware is software that facilitates communication between applications.

ORB (Object Request Broker) – Facilitates communication between clients and server objects.

MOM (Message-Oriented Middleware) – Supports asynchronous messaging.

ESB (Enterprise Service Bus) – A central integration platform.

38
Q

What are the DW, DF, and DR solutions for data integration

A

DW (Data Warehouse): Stores structured data for analytics, in a single database.

DF (Data Federation): Provides real-time access across multiple sources.

DR (Data Replication): Copies and synchronizes data between systems for consistency.

39
Q

Three core integration approaches

A

Information-oriented (data) – Integration based on data sharing.

Service-oriented (functionality) – Integration based on services and APIs.

Process-oriented (behavior) – Integration of business processes.

40
Q

What is metadata?

A

Metadata describes data, such as:
Protocols
Timestamps
Error codes
Authentication

41
Q

Two Similarities Between Common Database and File-Oriented System Integration

A

Data Sharing – Both methods involve storing data in a central location that different systems can access.

Batch Processing – Both approaches often work in non-real-time mode, where data is written and later read by another system.

42
Q

Two Differences Between Message- and RPC-Oriented System Integration

A

Communication Type:
Message-Oriented Middleware (MOM) supports asynchronous communication.
Remote Procedure Call (RPC) requires synchronous communication.

Decoupling:
MOM allows for loose coupling, meaning the sender and receiver do not need to be active simultaneously.
RPC requires tight coupling, as both systems need to be available at the same time.

43
Q

Similarity Between REST and Web Services

A

Both provide a way to allow communication between distributed systems over a network using standard web protocols.

44
Q

Main Advantage of High Coupling Between Integrated Systems

A

Efficiency and Performance: High coupling can lead to faster interactions since systems are more tightly integrated and can exchange data with minimal overhead.

45
Q

Main Advantage of Low Coupling Between Integrated Systems

A

Flexibility and Scalability: Systems can evolve independently, making it easier to replace or update components without affecting the whole system.

46
Q

Are Common Database and File-Oriented Systems High or Low Coupling?

A

Common Database: Tightly coupled – All applications depend on the shared database, requiring consistent schema and performance.

File-Oriented: Loosely coupled – Files are exchanged asynchronously, allowing each system to function independently.

47
Q

Which is the main similarity, and which are 2 differences between MOM and ESB integration logics?

A

Similarity - Both enable asynchronous communication between systems.

Difference 1 - MOM focuses on message queuing for loose coupling. ESB offers additional features like routing, transformation, and security.

Difference 2 - MOM is best for event-driven architectures. ESB supports a broader range of integrations, including SOAP and REST APIs.

48
Q

Which is the main similarity, and which are 2 differences between MOM and ORB integration logics?

A

Similarity - Both facilitate communication between distributed components

Difference 1 - MOM is message-based and asynchronous. ORB follows an object-based request/response model (often synchronous).

Difference 2 - MOM supports heterogeneous environments. ORB typically requires a common object model like CORBA.

49
Q

Which is the main similarity, and which are 2 differences between ORB and ESB integration logics?

A

Similarity - Both help integrate distributed applications and services.

Difference 1 - ORB is focused on direct method calls between objects. ESB supports multiple integration methods (messaging, routing, service orchestration).

Difference 2 - ORB is typically synchronous. ESB can handle both synchronous and asynchronous communication

50
Q

Orchestration vs. Choreography

A

Orchestration – A central controller manages service interactions (e.g., BPM engines).

Choreography – Services interact based on predefined rules without a central coordinator (e.g., event-driven systems).

51
Q

Synchronous vs. Asynchronous Communication

A

Synchronous: The sender waits for a response (e.g., calling a web API and waiting for a response).

Asynchronous: The sender continues execution without waiting (e.g., sending an email and processing continues).