Architecture - (Client|Server) - (Multi)Tier Architecture

Card Puncher Data Processing

About

On a application level, the two most common architectures are:

  • client/server
  • and multitier.

As internet computing becomes more prevalent in computing environments, many database management systems are moving to a multitier environment.

Type of Architecture

Client/Server

An system can easily take advantage of distributed processing by using its client/server architecture. In this architecture, the database system has two parts: a front-end or a client, and a back-end or a server.

The Client

The client is a database application that initiates a request for an operation to be performed on the database server. It requests, processes, and presents data managed by the server. The client workstation can be optimized for its job. For example, the client might not need large disk capacity, or it might benefit from graphic capabilities. Often, the client runs on a different computer than the database server. Many clients can simultaneously run against one server.

The Server

The server runs Oracle Database software and handles the functions required for concurrent, shared data access. The server receives and processes requests that originate from client applications. The computer that manages the server can be optimized for its duties. For example, the server computer can have large disk capacity and fast processors.

Multitier

Application Servers

A traditional multitier architecture has the following components:

  • A client or initiator process that starts an operation
  • One or more application servers that perform parts of the operation. An application server contains a large part of the application logic, provides access to the data for the client, and performs some query processing, thus removing some of the load from the database server. The application server can serve as an interface between clients and multiple database servers and can provide an additional level of security.
  • An end server or database server that stores most of the data used in the operation

This architecture enables use of an application server to do the following:

  • Validate the credentials of a client, such as a Web browser
  • Connect to an Oracle Database server
  • Perform the requested operation on behalf of the client

If proxy authentication is being used, then the identity of the client is maintained throughout all tiers of the connection.

Service-Oriented Architecture

Service-oriented architecture (SOA) is a multitier architecture in which application functionality is encapsulated in services. SOA services are usually implemented as Web services. Web services can be accessed with the HTTP protocol and are based on a set of XML-based open standards, such as WSDL and SOAP.





Discover More
Card Puncher Data Processing
(Software|Application|System)

This article regroups all cross functionality between application such as connection pool, proxy and so on .. It's more coupled to technology than to a product. From the operating system perspective,...
Mvc Common Architecture
Design Pattern - Model-View-Controller (MVC)

Model-View-Controller (MVC) development architecture. Common (Logic in a application server) Logic in the database 3 Tiers 2 Tiers See also Multitiers application server
Fusion Middelware Architecture
Fusion Middelware - Architecture

Fusion Middelware implements a multitier architecture where: Figure 3-2 Oracle Fusion Middleware...
J2ee Multitier Architecture
Java EE - (J2EE|JEE) Platform

The J2EE platform offers: a multitiered distributed application model, the ability to reuse components, integrated Extensible Markup Language (XML)-based data interchange, a unified security...
Card Puncher Data Processing
Software Architecture

Software architecture is : structure and vision On a application development level, the design help you to realize your architecture. What is architectural or not is really subjective. No architecture:...
Card Puncher Data Processing
Software Design - Scalability (Scale Up|Out)

Increasing or decreasing the capacity of a system by making effective use of resources is known as scalability. A scalable system can handle increasing numbers of requests without adversely affecting response...



Share this page:
Follow us:
Task Runner