Common Web Application Architecture
Web application can be accessed by the users in a web browser through the internet. When the process initialized HTTP requests will be send to the web server and the server render the web pages, return the HTML pages to the client. These pages can be display in the browser. As I identified these are the key components in the architecture. Let’s consider each part of the diagram. When describing the components, I’ve identified two major parts. They are web Server and client Web server: Presentation layer This provide the bridge into the core business logic encapsulated in the business services. Presentation layer is responsible to translate the tasks and also the results to the users in an understandable version. When we consider the web application, this layer will consists of a server side component and a client side components. If we use the techniques called AJAX with the client side, it will help to increase the user experience as well. There...