Answer Posted / uday kumar_anem
A web server is a software which just receives HTTP
requests from clients(browsers) and processes the request
and sends back the HTTP response to the client.
Once it receives the request it can send that request to
any of the CGI scripts/JSP/ASP, and once the response is
received from this script, it just again sends the response
to the client.
Whereas in application server provides business logic to
the client. It is like we are calling functions/methods.
Here each of these business logic is provided as a service.
Here also, the application server receives the request from
the script, and sends that request to the specific service
with proper parameters. The output from the service will
again sent back to the client.
WebServer is a subset of Application Server.
For more information, go through the below link:
http://www.javaworld.com/javaqa/2002-08/01-qa-0823-
appvswebserver.html?page=1
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
can a table be moved to different filegroup? : Sql server administration
What is coalesce in sql server?
How will you make an attribute not process? : sql server analysis services, ssas
What is an index in a database?
To which devices can a backup be created and where should these devices be located? : sql server management studio
How to transfer data from a cursor to variables with a "fetch" statement?
What are temporal tables in sql server 2016?
Will sql server 2005 allow you to reduce the size of a column?
What is cursors? And what are the different types of cursor?
Why SQL Agent is used?
Your table has a large character field there are queries that use this field in their search clause what should you do?
What stored procedure would you use to view lock information?
List layers of abstraction microsoft architectured to provide relational db through cloud platform ?
Define full outer join in sql server joins?
How to loop through the result set with @@fetch_status?