0
1.6kviews
Write a note on : Modeling Application Architecture for a wcb based Information System
1 Answer
0
2views

Architecture of Web-based systems

Client Server and 2 tier Web Architectures

Typically, when you are browsing the Internet, you will be using Web Browser software such as Internet Explorer or Mozilla Firefox. The computer which is running a browser is called a client, whilst the machine which is providing Web pages is called a server.

When you dial up to an Internet Service Provider ( ISP ) e.g. Blue Yonder, Aol, your computer is forming a network connection to a Web server. In this situation, your computer is in effect a client, which is linked to an ISP Web server. The web server, as the name suggests, serves your browser with Web pages (e.g. HTML, ASPX, JSP pages etc).

This simple scenario, where the Web server is connected to one or more clients is known as a 2 tier architecture model.

Figure B below demonstrates how Web pages are accessed via a browser, using a 2 tier architecture.

Fig. B – A simple diagram of 2 tier Client/server architecture

enter image description here

  1. Tier architectures

Generally computing applications consist of three different and distinct types of functionalities.

enter image description here

Presentation Services: These manifest themselves in the form of information display and user data input facilities. Generally the front-end for user interaction. For example logging in requires interaction in the form of collecting username and password information using a HTML-form.

Functional logic: Every application includes some data processing and this may also involve database interactivity. For example user authentication requires the logic unit to read username-password combinations from a database and compare until a good comparison (hopefully) is arrived at.

Data Management: Data, its storage, insertion and retrieval, its management and alteration is central to computing applications. For example a database management system (DBMS) is required for the management of usernames and associated passwords, their owners, etc.

Fig. An illustration of a 3 tier architecture model

enter image description here

N - Tier Architectures

It is also important to note that Web application architecture sometimes is referred to as multi-tier. In effect we could have more than 3-tiers in circumstances when the Web server requires to access one or more application servers for specialised services. This is known as n-Tier architecture.

Each layer within an N-tier architecture could be thought of as 'logical components' interacting with the layer above or below. Layers provide a means of grouping functionality within the application structure.

Some benefits of this approach include flexibility of component location - each layer may be held on a different server, this facilitates scalable applications capable of handling heavier server loads. Additionally each layer is encapsulated making it possible to change one layer without affecting another.

Please log in to add an answer.