Chapter 12: Problem 3
Your customer wants to develop a system for stock information where dealers can access information about companies and can evaluate various investment scenarios using a simulation system. Each dealer uses this simulation in a different way, according to his or her experience and the type of stocks in question. Suggest a client-server architecture for this system that shows where functionality is located. Justify the client-server system model that you have chosen.
Short Answer
Step by step solution
Outline the Requirements
Choose an Architecture Model
Presentation Tier Design
Application Tier Design
Data Tier Design
Justify the Model
Unlock Step-by-Step Solutions & Ace Your Exams!
-
Full Textbook Solutions
Get detailed explanations and key concepts
-
Unlimited Al creation
Al flashcards, explanations, exams and more...
-
Ads-free access
To over 500 millions flashcards
-
Money-back guarantee
We refund you if you fail your exam.
Over 30 million students worldwide already upgrade their learning with Vaia!
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
Three-Tier Architecture
The Presentation Tier acts as the user interface, providing interaction points for clients like dealers to access stock information. Next, the Application Tier serves as the engine behind the scenes, processing user inputs and executing business logic. It coordinates data requests and application responses. Lastly, the Data Tier is responsible for data storage and retrieval, containing all of the required company and stock data.
One of the greatest benefits of a three-tier architecture is modularity. By segmenting responsibilities across different layers, developers can independently update or scale each tier as needed without disrupting the others. This architecture is particularly advantageous for systems necessitating adaptability to varying loads and evolving needs.
System Design
Key aspects in designing this system are determining the functionalities each tier must perform, specifying how the tiers will communicate, and ensuring scalability and security. For example, we design the Presentation Tier to cater to user conveniences. Meanwhile, the Application Tier is designed to efficiently handle diverse business logic, while the Data Tier focuses on secure and reliable data operations.
An effective system design will efficiently make use of resources, maintain high performance, and ensure responsiveness under load. This requires careful consideration of architecture choice and technologies employed.
Presentation Tier
This tier's primary function is to capture user inputs and display the processed results, such as simulations of stock scenarios. User experience is paramount, so this layer is designed to be user-friendly and intuitive, providing users with ease of navigating through stock data and simulation tools.
Since the Presentation Tier communicates with the Application Tier, it is essential that it efficiently manage session states, inputs, and responses. This helps ensure a seamless and engaging user experience. Thrive for clean design and responsive interaction enhances how dealers use and benefit from the system.
Application Tier
It functions as the middleman between the user and the data. By handling requests, calculations, and logic necessary to process a stock dealer's strategy, the Application Tier ensures smooth and accurate operations. Moreover, it takes care of authentication and authorization, making sure secure access to sensitive financial data.
The Application Tier communicates with both the Presentation and Data Tiers. By sending queries and transactions to the Data Tier, it manages data retrieval and updates. On the other end, it sends processed outcomes back to the Presentation Tier, completing the information loop.
In this tier, scalability is crucial. Because it may need to handle ever-increasing amounts of processing as the system gains more users or as data complexity grows. This tier must remain robust, efficient, and agile to accommodate expanding business needs.