answersLogoWhite

0


Best Answer

Application server is used to serve the logic of the business to the application with the help of different protocol whereas web server is used to handle HTTP requests.

An application server is a computer that stores application programs designed to be run, as services, from a client computer. Depending on the application design, a client computer can run or invoke the remote application via a web interface or by running a client program designed to work with the application program.

A web server is a program (or application program) that receives requests from Web Browsers and responds by sending data back to the browser where it is displayed as a web page.

User Avatar

Miller McLaughlin

Lvl 10
2y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

A Web server will supply HTML files.

A database server stores company information, in a structured form (in tables), and listens to requests to change the data, or to provide individual pieces of data.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Difference between a web server and a database server?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

The first step in exchange between a Web browser and a database?

The Web browser requests a page from a Web server.


A web database usually resides on?

A "Database server".


What is the difference between mysap and sap?

SAP - Client (installed)/Server mySAP web browser (Client)/Server


What is the purpose of a web database?

The purpose of a web database is to store data that one would normally have on a database and then allow people to access it remotely. A web database can be accessed from anywhere online unlike a database that can only be accessed on its own server.


Difference between apache and PHP?

Apache is a web server. PHP is a scripting language.


What is a server daemon?

A server daemon is a program that runs in the background and provides some sort of service, such as a web server, SSH server, or a database server.


What is difference between client server and web server?

client site program always execute on client computer while server site program execute on sever computer


What is web front-end server?

In terms of Sharepoint it is the point of contact between the farm and the user that delivers the content as web pages through HTTP. It is not the back end database server, shared service provider, application server, search server or any other middleware Sharepoint provides.


What is web front end server?

In terms of Sharepoint it is the point of contact between the farm and the user that delivers the content as web pages through HTTP. It is not the back end database server, shared service provider, application server, search server or any other middleware Sharepoint provides.


What are the advantages of database server software?

"In short, the Advantage Database Server is a high-performance, low-maintenance, remote database server that permits you to easily build and deploy client/server applications and web-based applications".From IT Expert Saqib Khan AND CO.From NUST-SEECS


What is 2-tier architecture of a database explain with suitable diagram?

the client is on the first tier. The database server and web application server reside on the same server machine, which is the second tier. This second tier serves the data and executes the business logic for the web application


Interaction between applicationsever and web sever?

Application Server: This is the server where you core application rests. Here you will have business logic, computing, access to the database, business rules; etc. The web server will simply house your asp, aspx, html, etc.... pages. These pages act as the human interface to your application. Here people will be able to view data; pushed to the page by the application layer, and in whole or part obtained from the database server. When information is entered into the web interface and saved / committed it is passed to the application server. From here calculations are done, if needed, data validation, and ultimately stored to the database using the business rules that have been programmed into the application. The web interface should never communicate with the database server directly.