ARCHITECTURE    

N-Tier Architecture Applications
N-Tier architecture refers to the architecture of an application that has at least 3 "logical" layers -- or parts -- that are separate. Each layer interacts with only the layer directly below, and has specific function that it is responsible for.

Why use n-Tier architecture?
Each layer can be located on physically different servers with only minor code changes; hence they scale out and handle more server load. Also, what each layer does internally is completely hidden to other layers and this makes it possible to change or update one layer without recompiling or modifying other layers.

This is a very powerful feature of n-Tier architecture, as additional features or change to a layer can be done without redeploying the whole application. For example, by separating data access code from the business logic code, when the database servers change you only needs to change the data access code. Because business logic code stays the same, the business logic code does not need to be modified or recompiled.

An n-Tier application usually has three tiers, and they are called the presentation tier, the business tier and the data tier. Let's have a look at what each tier is responsible for.

Presentation Layer: Presentation Layer is the layer responsible for displaying user interface and "driving" that interface using business tier classes and objects. In ASP.NET it includes ASPX pages, user controls, server controls and sometimes security related classes and objects.

Business Tier: Business Tier is the layer responsible for accessing the data tier to retrieve, modify and delete data to and from the data tier and send the results to the presentation tier. This layer is also responsible for processing the data retrieved and sent to the presentation layer.

Business Logic Layer(BLL)& Data Access layer(DAL): Often this layer is divided into two sub layers: the Business Logic Layer (BLL), and the Data Access Layers (DAL). Business Logic Layers are above Data Access Layers, meaning BLL uses DAL classes and objects. DAL is responsible for accessing data and forwarding it to BLL.

Data Tier: Data tier is the database or the source of the data itself.

Logical Layers vs. Physical Layers (Distributed) Logical Layers and Physical Layers are the ones that confuse people. Firstly, a Logical Layer means that layers are separate in terms of assembly or sets of classes, but are still hosted on the same server. Physical Layer means that those assemblies or sets of classes are hosted on different servers with some additional code to handle the communication between the layers. Example: Remoting and Web Services.

   
 
HR Consulting | Custom Software Development | .NET Development | Java Development | AJAX & LAMP Development

Copyright © 2011-2012 Esika Infotech Private Limited, Bangalore